stz-chart-maker 1.2.3 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/index.d.ts +148 -29
- package/dist/index.js +1729 -1694
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as chart_js from 'chart.js';
|
|
2
|
+
import { ChartType, PluginOptionsByType, ChartOptions, GridLineOptions, FontSpec, Tick, Chart, ChartEvent, ActiveElement, LegendOptions, ChartDataset, Plugin as Plugin$1, TooltipItem, ChartTypeRegistry } from 'chart.js';
|
|
2
3
|
import { ZoomPluginOptions } from 'chartjs-plugin-zoom/types/options';
|
|
3
4
|
import { DeepPartial as DeepPartial$1 } from 'chart.js/dist/types/utils';
|
|
4
5
|
|
|
@@ -74,8 +75,11 @@ interface ChartBuilder<TType extends ChartType> {
|
|
|
74
75
|
width: number;
|
|
75
76
|
height: number;
|
|
76
77
|
}) => void): this;
|
|
78
|
+
setTitle(titleOptions: CommonCartesianTitleConfig): this;
|
|
79
|
+
setLegend(legendOptions: DeepPartial<LegendOptions<TType>>): this;
|
|
77
80
|
}
|
|
78
|
-
type
|
|
81
|
+
type Align = 'start' | 'center' | 'end';
|
|
82
|
+
type Position = Align | 'left' | 'right' | 'top' | 'bottom';
|
|
79
83
|
type CartesianChartType = 'line' | 'bar' | 'scatter' | 'bubble';
|
|
80
84
|
type ArcChartType = 'doughnut' | 'pie';
|
|
81
85
|
type RadialChartType = 'radar' | 'polarArea';
|
|
@@ -114,16 +118,36 @@ interface SettingOptions {
|
|
|
114
118
|
}
|
|
115
119
|
interface CommonCartesianTitleConfig {
|
|
116
120
|
display?: boolean;
|
|
117
|
-
align?:
|
|
121
|
+
align?: Align;
|
|
118
122
|
text?: string | string[];
|
|
119
123
|
color?: string;
|
|
120
124
|
font?: FontSpec;
|
|
121
|
-
padding?: {
|
|
122
|
-
top
|
|
123
|
-
bottom
|
|
124
|
-
|
|
125
|
-
|
|
125
|
+
padding?: number | {
|
|
126
|
+
top: number;
|
|
127
|
+
bottom: number;
|
|
128
|
+
};
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
interface CommonCartesianLegendConfig {
|
|
132
|
+
display?: boolean;
|
|
133
|
+
position?: 'top' | 'left' | 'bottom' | 'right' | 'center' | 'chartArea';
|
|
134
|
+
align?: Align;
|
|
135
|
+
labels?: {
|
|
136
|
+
boxWidth?: number;
|
|
137
|
+
boxHeight?: number;
|
|
138
|
+
color?: string;
|
|
139
|
+
font?: FontSpec;
|
|
140
|
+
padding?: number;
|
|
141
|
+
generateLabels?: (chart: any) => any[];
|
|
142
|
+
filter?: (item: any, data: any) => boolean;
|
|
143
|
+
sort?: (a: any, b: any, data: any) => number;
|
|
144
|
+
pointStyle?: string | boolean;
|
|
145
|
+
textAlign?: 'left' | 'center' | 'right';
|
|
146
|
+
usePointStyle?: boolean;
|
|
126
147
|
};
|
|
148
|
+
onClick?: (e: any, legendItem: any, legend: any) => void;
|
|
149
|
+
onHover?: (e: any, legendItem: any, legend: any) => void;
|
|
150
|
+
onLeave?: (e: any, legendItem: any, legend: any) => void;
|
|
127
151
|
}
|
|
128
152
|
interface CommonCartesian {
|
|
129
153
|
bounds: string;
|
|
@@ -293,6 +317,8 @@ interface CartesianChartBuilder<TType extends CartesianChartType> extends ChartB
|
|
|
293
317
|
setDatasetParsing(datasetIndex: number, xAxisKey: string | false, yAxisKey: string | false): this;
|
|
294
318
|
setAllDatasetsParsing(xAxisKey: string | false, yAxisKey: string | false): this;
|
|
295
319
|
customLegend(obj: HtmlLegendOptions): this;
|
|
320
|
+
setBackgroundColor(color: Color): this;
|
|
321
|
+
setGrid(axis: string, gridOptions: GridLineOptions): this;
|
|
296
322
|
}
|
|
297
323
|
interface BarChartBuilder extends CartesianChartBuilder<'bar'> {
|
|
298
324
|
setBarThickness(datasetIndex: number, thickness: number): this;
|
|
@@ -355,8 +381,20 @@ interface BubbleChartBuilder extends CartesianChartBuilder<'bubble'> {
|
|
|
355
381
|
interface PieChartBuilder extends ArcChartBuilder<'pie'> {
|
|
356
382
|
}
|
|
357
383
|
interface DoughnutChartBuilder extends ArcChartBuilder<'doughnut'> {
|
|
384
|
+
convertToPie(): this;
|
|
385
|
+
setSegmentOffset(datasetIndex: number, offset: number): this;
|
|
386
|
+
setCutout(cutout: string | number): this;
|
|
387
|
+
setCenterText(config: {
|
|
388
|
+
text: string | string[];
|
|
389
|
+
color?: string;
|
|
390
|
+
fontStyle?: string;
|
|
391
|
+
sidePadding?: number;
|
|
392
|
+
minFontSize?: number;
|
|
393
|
+
maxFontSize?: number;
|
|
394
|
+
}): this;
|
|
358
395
|
}
|
|
359
396
|
|
|
397
|
+
type Types_Align = Align;
|
|
360
398
|
type Types_ArcChartBuilder<TType extends ArcChartType> = ArcChartBuilder<TType>;
|
|
361
399
|
type Types_ArcChartType = ArcChartType;
|
|
362
400
|
type Types_BarChartBuilder = BarChartBuilder;
|
|
@@ -370,6 +408,7 @@ type Types_CommonAxes = CommonAxes;
|
|
|
370
408
|
type Types_CommonAxesSacels = CommonAxesSacels;
|
|
371
409
|
type Types_CommonCartesian = CommonCartesian;
|
|
372
410
|
type Types_CommonCartesianAxes = CommonCartesianAxes;
|
|
411
|
+
type Types_CommonCartesianLegendConfig = CommonCartesianLegendConfig;
|
|
373
412
|
type Types_CommonCartesianTicks = CommonCartesianTicks;
|
|
374
413
|
type Types_CommonCartesianTitleConfig = CommonCartesianTitleConfig;
|
|
375
414
|
type Types_CommonTicks = CommonTicks;
|
|
@@ -396,7 +435,7 @@ type Types_RadarChartBuilder = RadarChartBuilder;
|
|
|
396
435
|
type Types_RadialChartType = RadialChartType;
|
|
397
436
|
type Types_SettingOptions = SettingOptions;
|
|
398
437
|
declare namespace Types {
|
|
399
|
-
export type { Types_ArcChartBuilder as ArcChartBuilder, Types_ArcChartType as ArcChartType, Types_BarChartBuilder as BarChartBuilder, Types_BubbleChartBuilder as BubbleChartBuilder, Types_CartesianChartBuilder as CartesianChartBuilder, Types_CartesianChartType as CartesianChartType, Types_CartesianDataset as CartesianDataset, Types_ChartBuilder as ChartBuilder, Types_Color as Color, Types_CommonAxes as CommonAxes, Types_CommonAxesSacels as CommonAxesSacels, Types_CommonCartesian as CommonCartesian, Types_CommonCartesianAxes as CommonCartesianAxes, Types_CommonCartesianTicks as CommonCartesianTicks, Types_CommonCartesianTitleConfig as CommonCartesianTitleConfig, Types_CommonTicks as CommonTicks, Types_Constructor as Constructor, Types_CustomArcChartOptions as CustomArcChartOptions, Types_CustomBarChartOptions as CustomBarChartOptions, Types_CustomBubbleChartOptions as CustomBubbleChartOptions, Types_CustomCartesianDataset as CustomCartesianDataset, Types_CustomChartOptions as CustomChartOptions, Types_CustomDoughnutChartOptions as CustomDoughnutChartOptions, Types_CustomLineChartOptions as CustomLineChartOptions, Types_CustomOptionPlugins as CustomOptionPlugins, Types_CustomPieChartOptions as CustomPieChartOptions, Types_DeepPartial as DeepPartial, Types_DeepPartialCartesianAxes as DeepPartialCartesianAxes, Types_DeepPartialPluginOptions as DeepPartialPluginOptions, Types_DoughnutChartBuilder as DoughnutChartBuilder, Types_HtmlLegendOptions as HtmlLegendOptions, Types_LineChartBuilder as LineChartBuilder, Types_Mode as Mode, Types_PieChartBuilder as PieChartBuilder, Types_Position as Position, Types_RadarChartBuilder as RadarChartBuilder, Types_RadialChartType as RadialChartType, Types_SettingOptions as SettingOptions };
|
|
438
|
+
export type { Types_Align as Align, Types_ArcChartBuilder as ArcChartBuilder, Types_ArcChartType as ArcChartType, Types_BarChartBuilder as BarChartBuilder, Types_BubbleChartBuilder as BubbleChartBuilder, Types_CartesianChartBuilder as CartesianChartBuilder, Types_CartesianChartType as CartesianChartType, Types_CartesianDataset as CartesianDataset, Types_ChartBuilder as ChartBuilder, Types_Color as Color, Types_CommonAxes as CommonAxes, Types_CommonAxesSacels as CommonAxesSacels, Types_CommonCartesian as CommonCartesian, Types_CommonCartesianAxes as CommonCartesianAxes, Types_CommonCartesianLegendConfig as CommonCartesianLegendConfig, Types_CommonCartesianTicks as CommonCartesianTicks, Types_CommonCartesianTitleConfig as CommonCartesianTitleConfig, Types_CommonTicks as CommonTicks, Types_Constructor as Constructor, Types_CustomArcChartOptions as CustomArcChartOptions, Types_CustomBarChartOptions as CustomBarChartOptions, Types_CustomBubbleChartOptions as CustomBubbleChartOptions, Types_CustomCartesianDataset as CustomCartesianDataset, Types_CustomChartOptions as CustomChartOptions, Types_CustomDoughnutChartOptions as CustomDoughnutChartOptions, Types_CustomLineChartOptions as CustomLineChartOptions, Types_CustomOptionPlugins as CustomOptionPlugins, Types_CustomPieChartOptions as CustomPieChartOptions, Types_DeepPartial as DeepPartial, Types_DeepPartialCartesianAxes as DeepPartialCartesianAxes, Types_DeepPartialPluginOptions as DeepPartialPluginOptions, Types_DoughnutChartBuilder as DoughnutChartBuilder, Types_HtmlLegendOptions as HtmlLegendOptions, Types_LineChartBuilder as LineChartBuilder, Types_Mode as Mode, Types_PieChartBuilder as PieChartBuilder, Types_Position as Position, Types_RadarChartBuilder as RadarChartBuilder, Types_RadialChartType as RadialChartType, Types_SettingOptions as SettingOptions };
|
|
400
439
|
}
|
|
401
440
|
|
|
402
441
|
interface ChartConfig {
|
|
@@ -475,6 +514,45 @@ declare abstract class ChartWrapper<TType extends ChartType, TOptions extends Cu
|
|
|
475
514
|
width: number;
|
|
476
515
|
height: number;
|
|
477
516
|
}) => void): this;
|
|
517
|
+
/**
|
|
518
|
+
* @description 차트의 제목을 설정합니다.
|
|
519
|
+
* @param {DeepPartial<CommonCartesianTitleConfig>} titleOptions
|
|
520
|
+
* @returns {this}
|
|
521
|
+
* @Since 1.0.0
|
|
522
|
+
* @category options
|
|
523
|
+
* @example
|
|
524
|
+
* chart.setTitle({
|
|
525
|
+
* text: '차트 제목',
|
|
526
|
+
* align: 'center' // 'start' | 'center' | 'end'
|
|
527
|
+
* });
|
|
528
|
+
*/
|
|
529
|
+
setTitle(titleOptions: DeepPartial<CommonCartesianTitleConfig>): this;
|
|
530
|
+
/**
|
|
531
|
+
* @description 차트의 범례를 설정합니다.
|
|
532
|
+
* @param {DeepPartial<LegendOptions<TType>>} legendOptions
|
|
533
|
+
* @returns {this}
|
|
534
|
+
* @Since 1.0.0
|
|
535
|
+
* @category options
|
|
536
|
+
* @example
|
|
537
|
+
* chart.setLegend({
|
|
538
|
+
* position: 'bottom',
|
|
539
|
+
* align: 'center',
|
|
540
|
+
* labels: {
|
|
541
|
+
* boxWidth: 40,
|
|
542
|
+
* padding: 15,
|
|
543
|
+
* font: {
|
|
544
|
+
* size: 14,
|
|
545
|
+
* weight: 'bold'
|
|
546
|
+
* },
|
|
547
|
+
* color: '#333',
|
|
548
|
+
* usePointStyle: true
|
|
549
|
+
* }
|
|
550
|
+
* onClick: (e, legendItem, legend) => {
|
|
551
|
+
* console.log('Legend clicked:', legendItem);
|
|
552
|
+
* }
|
|
553
|
+
* });
|
|
554
|
+
*/
|
|
555
|
+
setLegend(legendOptions: DeepPartial<LegendOptions<TType>>): this;
|
|
478
556
|
}
|
|
479
557
|
|
|
480
558
|
interface AxisColors {
|
|
@@ -559,6 +637,7 @@ declare abstract class CartesianChartWrapper<TType extends CartesianChartType> e
|
|
|
559
637
|
protected mustHavePlugins(): {
|
|
560
638
|
id: string;
|
|
561
639
|
afterDraw(chart: any, args: any, options: any): void;
|
|
640
|
+
afterDestroy(chart: chart_js.Chart): void;
|
|
562
641
|
}[];
|
|
563
642
|
protected isLine(): boolean;
|
|
564
643
|
protected isScatter(): boolean;
|
|
@@ -805,6 +884,28 @@ declare abstract class CartesianChartWrapper<TType extends CartesianChartType> e
|
|
|
805
884
|
* @category Dataset
|
|
806
885
|
*/
|
|
807
886
|
addDataset(dataset: CustomCartesianDataset<TType>): string;
|
|
887
|
+
/**
|
|
888
|
+
* @description 축의 그리드 라인 옵션을 설정합니다.
|
|
889
|
+
* @param {string} axis
|
|
890
|
+
* @param {GridLineOptions} gridOptions
|
|
891
|
+
* @returns {this}
|
|
892
|
+
* @Since 1.0.0
|
|
893
|
+
* @category scales
|
|
894
|
+
* @example
|
|
895
|
+
* chart.setGrid('y', { color: 'rgba(0, 0, 0, 0.1)', lineWidth: 1 });
|
|
896
|
+
*/
|
|
897
|
+
setGrid(axis: string, gridOptions: GridLineOptions): this;
|
|
898
|
+
/**
|
|
899
|
+
* @description 차트의 캔버스 배경색을 설정합니다.
|
|
900
|
+
* @param {string} color
|
|
901
|
+
* @returns {this}
|
|
902
|
+
* @Since 1.0.0
|
|
903
|
+
* @category options
|
|
904
|
+
* @example
|
|
905
|
+
* chart.setBackgroundColor('rgba(255, 255, 255, 0.5)');
|
|
906
|
+
* chart.setBackgroundColor('#f0f0f0');
|
|
907
|
+
*/
|
|
908
|
+
setBackgroundColor(color: string): this;
|
|
808
909
|
}
|
|
809
910
|
|
|
810
911
|
declare class BarChartWrapper extends CartesianChartWrapper<'bar'> implements BarChartBuilder {
|
|
@@ -1274,23 +1375,6 @@ declare class BubbleChartWrapper extends CartesianChartWrapper<'bubble'> impleme
|
|
|
1274
1375
|
setAllRotation(rotation: number): this;
|
|
1275
1376
|
}
|
|
1276
1377
|
|
|
1277
|
-
/**
|
|
1278
|
-
* ═════════════════════════════════════════════════════════════
|
|
1279
|
-
* 📄 FILE : ArcChartWrapper.ts
|
|
1280
|
-
* 📁 PACKAGE : chart-toolbox
|
|
1281
|
-
* 👤 AUTHOR : stz
|
|
1282
|
-
* 🕒 CREATED : 25. 9. 28.
|
|
1283
|
-
* ═════════════════════════════════════════════════════════════
|
|
1284
|
-
* ═════════════════════════════════════════════════════════════
|
|
1285
|
-
* 📝 DESCRIPTION
|
|
1286
|
-
* Arc Chart (Pie, Doughnut) 를 위한 추상 클래스
|
|
1287
|
-
* ═════════════════════════════════════════════════════════════
|
|
1288
|
-
* ═════════════════════════════════════════════════════════════
|
|
1289
|
-
* 🔄 CHANGE LOG
|
|
1290
|
-
* - DATE : 2025/09/28 | Author : stz | 최초 생성
|
|
1291
|
-
* ═════════════════════════════════════════════════════════════
|
|
1292
|
-
*/
|
|
1293
|
-
|
|
1294
1378
|
declare abstract class ArcChartWrapper<TType extends ArcChartType> extends ChartWrapper<TType> implements ArcChartBuilder<TType> {
|
|
1295
1379
|
readonly type: TType;
|
|
1296
1380
|
private _chartId?;
|
|
@@ -1312,6 +1396,7 @@ declare abstract class ArcChartWrapper<TType extends ArcChartType> extends Chart
|
|
|
1312
1396
|
protected mustHavePlugins(): {
|
|
1313
1397
|
id: string;
|
|
1314
1398
|
afterDraw(chart: any, args: any, options: any): void;
|
|
1399
|
+
afterDestroy(chart: chart_js.Chart): void;
|
|
1315
1400
|
}[];
|
|
1316
1401
|
protected normalize(): void;
|
|
1317
1402
|
protected configAop(config: any): any;
|
|
@@ -1493,6 +1578,31 @@ declare class DoughnutChartWrapper extends ArcChartWrapper<'doughnut'> implement
|
|
|
1493
1578
|
* @beta
|
|
1494
1579
|
*/
|
|
1495
1580
|
setAllBorderColor(borderColor: string | string[]): this;
|
|
1581
|
+
/**
|
|
1582
|
+
* @description 도넛 중앙에 텍스트를 설정합니다.
|
|
1583
|
+
* @param {{text: string | string[], color?: string, fontStyle?: string, sidePadding?: number, minFontSize?: number, maxFontSize?: number}} config
|
|
1584
|
+
* @returns {this}
|
|
1585
|
+
* @since 1.0.0
|
|
1586
|
+
* @category plugin
|
|
1587
|
+
* @example
|
|
1588
|
+
* const chart = chartWrapper.create('doughnut', labels, datasets, options).setCenterText({
|
|
1589
|
+
* text: 'Center Text',
|
|
1590
|
+
* color: '#000',
|
|
1591
|
+
* fontStyle: 'Arial',
|
|
1592
|
+
* sidePadding: 20,
|
|
1593
|
+
* minFontSize: 12,
|
|
1594
|
+
* maxFontSize: 24
|
|
1595
|
+
* }).build('myDoughnutChart');
|
|
1596
|
+
* @beta
|
|
1597
|
+
*/
|
|
1598
|
+
setCenterText(config: {
|
|
1599
|
+
text: string | string[];
|
|
1600
|
+
color?: string;
|
|
1601
|
+
fontStyle?: string;
|
|
1602
|
+
sidePadding?: number;
|
|
1603
|
+
minFontSize?: number;
|
|
1604
|
+
maxFontSize?: number;
|
|
1605
|
+
}): this;
|
|
1496
1606
|
}
|
|
1497
1607
|
|
|
1498
1608
|
declare const noDataPlugin: {
|
|
@@ -1506,9 +1616,17 @@ declare const zoomResetPlugin: {
|
|
|
1506
1616
|
afterDraw(chart: any, args: any, options: any): void;
|
|
1507
1617
|
afterEvent(chart: any, args: any): void;
|
|
1508
1618
|
};
|
|
1509
|
-
declare
|
|
1619
|
+
declare function doughnutCenterTextPlugin(config: {
|
|
1620
|
+
text: string | string[];
|
|
1621
|
+
color?: string;
|
|
1622
|
+
fontStyle?: string;
|
|
1623
|
+
fontSize?: string;
|
|
1624
|
+
}): {
|
|
1510
1625
|
id: string;
|
|
1511
|
-
|
|
1626
|
+
afterInit(chart: Chart): void;
|
|
1627
|
+
afterUpdate(chart: Chart): void;
|
|
1628
|
+
updatePosition(chart: Chart): void;
|
|
1629
|
+
destroy(chart: Chart): void;
|
|
1512
1630
|
};
|
|
1513
1631
|
declare const loadingPlugin: {
|
|
1514
1632
|
id: string;
|
|
@@ -1557,6 +1675,7 @@ declare const customLegend: {
|
|
|
1557
1675
|
declare const chartMountPlugin: {
|
|
1558
1676
|
id: string;
|
|
1559
1677
|
afterDraw(chart: any, args: any, options: any): void;
|
|
1678
|
+
afterDestroy(chart: Chart): void;
|
|
1560
1679
|
};
|
|
1561
1680
|
declare const blinkPlugin: Plugin$1;
|
|
1562
1681
|
declare const makeCenterHtml: (percent: number, ok?: number, warn?: number, ng?: number) => string;
|
|
@@ -1705,4 +1824,4 @@ declare const T$: {
|
|
|
1705
1824
|
};
|
|
1706
1825
|
|
|
1707
1826
|
export { ArcChartWrapper, BarChartWrapper, BubbleChartWrapper, CartesianChartWrapper, ChartFactory, ChartInstance, ChartToolBox, ChartTypes, ChartWrapper, CreateZoomRangeSlider, DoughnutChartWrapper, LineChartWrapper, T$, barScaleImgPlugin, blinkPlugin, changeSetting, chartMountPlugin, createDefaultBarOptions, createDefaultBubbleOptions, createDefaultLineOptions, customLegend, T$ as default, defaultBarScales, defaultBarTooltipCallback, defaultBubbleScales, defaultBubbleTooltipCallback, defaultLineScales, defaultLineTooltipCallback, doughnutCenterTextPlugin, loadingPlugin, makeCenterHtml, noDataPlugin, sparkBarOptions, sparkBubbleOptions, sparkLineOptions, zoomRangeSlider, zoomResetPlugin };
|
|
1708
|
-
export type { AllChartTypes, ArcChartBuilder, ArcChartType, AxisColors, BarChartBuilder, BubbleChartBuilder, CartesianChartBuilder, CartesianChartType, CartesianDataset, ChartBuilder, ChartWithFocus, Color, CommonAxes, CommonAxesSacels, CommonCartesian, CommonCartesianAxes, CommonCartesianTicks, CommonCartesianTitleConfig, CommonTicks, Constructor, CustomArcChartOptions, CustomBarChartOptions, CustomBubbleChartOptions, CustomCartesianDataset, CustomChartOptions, CustomDoughnutChartOptions, CustomLineChartOptions, CustomOptionPlugins, CustomPieChartOptions, CustomZoomType, DataLabels, DataLabelsContext, DatasetWithPrevColors, DeepPartial, DeepPartialCartesianAxes, DeepPartialPluginOptions, DeepPartialZoomType, DoughnutChartBuilder, FocusCallback, HtmlLegendOptions, LineChartBuilder, Mode, OriginalColors, PartialDataLabels, PieChartBuilder, Position, RadarChartBuilder, RadialChartType, ScaleWithOriginalColors, SettingOptions, ZoomRangeSliderColors, ZoomRangeSliderPlugin, ZoomRangeSliderVar };
|
|
1827
|
+
export type { Align, AllChartTypes, ArcChartBuilder, ArcChartType, AxisColors, BarChartBuilder, BubbleChartBuilder, CartesianChartBuilder, CartesianChartType, CartesianDataset, ChartBuilder, ChartWithFocus, Color, CommonAxes, CommonAxesSacels, CommonCartesian, CommonCartesianAxes, CommonCartesianLegendConfig, CommonCartesianTicks, CommonCartesianTitleConfig, CommonTicks, Constructor, CustomArcChartOptions, CustomBarChartOptions, CustomBubbleChartOptions, CustomCartesianDataset, CustomChartOptions, CustomDoughnutChartOptions, CustomLineChartOptions, CustomOptionPlugins, CustomPieChartOptions, CustomZoomType, DataLabels, DataLabelsContext, DatasetWithPrevColors, DeepPartial, DeepPartialCartesianAxes, DeepPartialPluginOptions, DeepPartialZoomType, DoughnutChartBuilder, FocusCallback, HtmlLegendOptions, LineChartBuilder, Mode, OriginalColors, PartialDataLabels, PieChartBuilder, Position, RadarChartBuilder, RadialChartType, ScaleWithOriginalColors, SettingOptions, ZoomRangeSliderColors, ZoomRangeSliderPlugin, ZoomRangeSliderVar };
|