Browse Source

lint fixes

pull/2/head
rozetko 2 years ago
parent
commit
37c8c899ef
  1. 5
      README.md
  2. 5
      src/models/options/barOptions.ts

5
README.md

@ -21,8 +21,9 @@
1. Create a new panel and select Chartwerk as the visualization 1. Create a new panel and select Chartwerk as the visualization
2. Add queries with unique aliases 2. Add queries with unique aliases
3. Go to the Options Tab and setup panel: 3. Go to the Options Tab and setup panel:
- Choose visualization type
- Select metric in the Value -> Metric dropdown (by default, the first metric is used) - Choose visualization type
- Select metric in the Value -> Metric dropdown (by default, the first metric is used)
## Demo ## Demo

5
src/models/options/barOptions.ts

@ -1,10 +1,9 @@
import { AbsoluteTimeRange } from '@grafana/data'; import { AbsoluteTimeRange } from '@grafana/data';
// Convert Grafana options into Chartwerk Bar options // Convert Grafana options into Chartwerk Bar options
export class BarOptions { export class BarOptions {
constructor(private grafanaSeriesList: any[], private changeTimeRange: (timeRange: AbsoluteTimeRange) => void) { constructor(private grafanaSeriesList: any[], private changeTimeRange: (timeRange: AbsoluteTimeRange) => void) {
console.log(this.grafanaSeriesList) console.log(this.grafanaSeriesList);
} }
getChartwerkOptions(): any { getChartwerkOptions(): any {
@ -34,7 +33,7 @@ export class BarOptions {
eventsCallbacks: { eventsCallbacks: {
zoomIn: (range: any) => { zoomIn: (range: any) => {
this.changeTimeRange({ from: range[0][0], to: range[0][1] }); this.changeTimeRange({ from: range[0][0], to: range[0][1] });
} },
}, },
}; };
} }

Loading…
Cancel
Save