Hastic standalone https://hastic.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
443 B

3 years ago
import { ChartwerkLineChart, LineOptions, LineTimeSerie } from "@chartwerk/line-pod";
export class HasticPod extends ChartwerkLineChart {
3 years ago
constructor(el: HTMLElement, series?: LineTimeSerie[]) {
super(el, series, {
renderLegend: false,
});
3 years ago
}
renderMetrics() {
super.renderMetrics();
console.log('render my metrics');
}
private _renderSegments() {
const m = this.metricContainer;
console.log(m);
}
3 years ago
}