This repository was archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
87 lines (74 loc) · 1.89 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { IChartDef } from "@data-forge-plot/chart-def";
import { formatChartDef } from "./lib/format-chart-def";
export { formatChartDef } from "./lib/format-chart-def";
import * as c3 from "c3";
//
// Interface to control and configure a mounted chart.
//
export interface IChart {
//
// Unmount the chart.
//
unmount(): void;
//
// Size the chart to fit its container.
//
sizeToFit(): void;
}
//
// Wrapper for a C3 chart.
//
class C3Chart implements IChart {
//
// The C3 chart object.
//
private chart?: c3.ChartAPI;
constructor(chart: c3.ChartAPI) {
this.chart = chart;
}
//
// Unmount the chart.
//
public unmount(): void {
if (this.chart) {
this.chart.destroy();
this.chart = undefined;
}
}
//
// Size the chart to fit its container.
//
public sizeToFit(): void {
if (this.chart) {
this.chart.resize();
}
}
}
/**
* Options to control how the chart is mounted.
*/
export interface IMountOptions {
/**
* Set to true to make the chart static.
* The chart will have interactive features and animations disabled.
*/
makeStatic?: boolean;
/**
* Debug log the chart definition after formatting.
*/
showChartDef?: boolean;
}
//
// Mount the chart on the DOM element.
//
export function mountChart(chartDef: IChartDef, domElement: HTMLElement, chartOptions?: IMountOptions): IChart {
const c3ChartDef = formatChartDef(chartDef); //TODO: This can be properly typed to a c3 chart configuration!
if (chartOptions && chartOptions.showChartDef) {
console.log("Formatted chart definition:");
console.log(JSON.stringify(c3ChartDef, null, 4));
}
c3ChartDef.bindto = domElement;
const chart = c3.generate(c3ChartDef);
const c3Chart = new C3Chart(chart);
return c3Chart;
}