Browse Source

threshold line

merge-requests/1/merge
vargburz 3 years ago
parent
commit
b9192ed9b1
  1. 22
      dist/gauge.d.ts
  2. 47011
      dist/index.js
  3. 12
      dist/pod.d.ts
  4. 4638
      package-lock.json
  5. 29
      src/index.ts

22
dist/gauge.d.ts vendored

@ -0,0 +1,22 @@
import { GaugeOptions } from './types';
import * as d3 from 'd3';
export declare type D3SVGSelection = d3.Selection<SVGElement, unknown, null, undefined>;
export declare type BoundingBox = {
x?: number;
y?: number;
width: number;
height: number;
};
export declare class Gauge {
protected svg: D3SVGSelection;
protected readonly options: GaugeOptions;
private _rootGroup;
private _boundingBox;
private _radius;
private _centrum;
constructor(svg: D3SVGSelection, options: GaugeOptions);
private _setBoundingBox;
render(value: number, boudingBox: BoundingBox): void;
private _initRootGroup;
private _renderValueArc;
}

47011
dist/index.js vendored

File diff suppressed because one or more lines are too long

12
dist/pod.d.ts vendored

@ -0,0 +1,12 @@
import { GaugeOptions, GaugeTimeSerie } from './types';
import { ChartwerkPod } from '@chartwerk/core';
export declare class Pod extends ChartwerkPod<GaugeTimeSerie, GaugeOptions> {
protected readonly options: GaugeOptions;
constructor(el: HTMLElement, series: GaugeTimeSerie[], options: GaugeOptions);
renderMetrics(): void;
onMouseOver(): void;
onMouseMove(): void;
onMouseOut(): void;
renderSharedCrosshair(): void;
hideSharedCrosshair(): void;
}

4638
package-lock.json generated

File diff suppressed because it is too large Load Diff

29
src/index.ts

@ -29,8 +29,8 @@ const DEFAULT_GAUGE_OPTIONS: GaugeOptions = {
],
defaultColor: 'red',
stat: Stat.CURRENT,
innerRadius: 50,
outerRadius: 80
innerRadius: 48,
outerRadius: 72
};
export class ChartwerkGaugePod extends ChartwerkPod<GaugeTimeSerie, GaugeOptions> {
@ -49,19 +49,25 @@ export class ChartwerkGaugePod extends ChartwerkPod<GaugeTimeSerie, GaugeOptions
this.renderNoDataPointsMessage();
return;
}
console.log('renderMetrics', this.options);
this._gaugeTransform = `translate(${this.width / 2},${this.height - 10})`;
const arc = d3.arc()
.innerRadius(this._innerRadius)
.outerRadius(this._outerRadius)
.padAngle(0);
const arc2 = d3.arc()
.innerRadius(74)
.outerRadius(78)
.padAngle(0);
const pie = d3.pie()
.startAngle((-1 * Math.PI) / 2)
.endAngle(Math.PI / 2)
.startAngle((-1 * Math.PI) / 2 - 0.15)
.endAngle(Math.PI / 2 + 0.15)
.sort(null);
console.log('this._valueRange', this._valueRange);
const arcs = pie(this._valueRange);
this.chartContainer.selectAll('path')
@ -69,11 +75,21 @@ export class ChartwerkGaugePod extends ChartwerkPod<GaugeTimeSerie, GaugeOptions
.enter()
.append('path')
.style('fill', (d: object, i: number) => {
return this._colors[i];
return 'orange';
})
.attr('d', arc as any)
.attr('transform', this._gaugeTransform)
this.chartContainer.selectAll(null)
.data(arcs)
.enter()
.append('path')
.style('fill', (d: object, i: number) => {
return this._colors[i];
})
.attr('d', arc2 as any)
.attr('transform', this._gaugeTransform)
const needle = this.chartContainer.selectAll('.needle')
.data([0])
.enter()
@ -95,6 +111,7 @@ export class ChartwerkGaugePod extends ChartwerkPod<GaugeTimeSerie, GaugeOptions
private get _valueRange(): number[] {
// TODO: refactor
// TODO: max value might be less than the latest stop
console.log('_sortedStops', this._sortedStops);
const stopValues = [...this._sortedStops.map(stop => stop.value), this.options.maxValue || this.maxValue];
if(stopValues.length < 2) {

Loading…
Cancel
Save