stz-chart-maker 2.4.2 → 2.4.3
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/dist/index.d.ts +72 -3
- package/dist/index.mjs +3722 -3679
- package/package.json +1 -1
- package/CHANGELOG.md +0 -253
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChartTypeRegistry, ChartType, ChartDataset, DefaultDataPoint, PointStyle, GridLineOptions, FontSpec, Tick,
|
|
1
|
+
import { ChartTypeRegistry, ChartType, ChartDataset, DefaultDataPoint, PointStyle, Chart as Chart$1, GridLineOptions, FontSpec, Tick, ChartOptions, PluginOptionsByType, ChartEvent, ActiveElement, LegendOptions, TooltipOptions, Plugin, TooltipItem } from 'chart.js';
|
|
2
2
|
import { TreemapControllerDatasetOptions } from 'chartjs-chart-treemap';
|
|
3
3
|
import { ZoomOptions, PanOptions, LimitOptions, ScaleLimits } from 'chartjs-plugin-zoom/types/options';
|
|
4
4
|
|
|
@@ -175,6 +175,46 @@ interface ScatterAxisRangePadding {
|
|
|
175
175
|
/** Y축 여유 비율입니다. `0.1` 이면 데이터 범위의 10%를 양쪽에 추가합니다. */
|
|
176
176
|
y?: number;
|
|
177
177
|
}
|
|
178
|
+
interface ScatterEditablePoint {
|
|
179
|
+
x: number;
|
|
180
|
+
y: number;
|
|
181
|
+
}
|
|
182
|
+
interface ScatterEditablePointChangeContext {
|
|
183
|
+
chart: Chart$1<'scatter'>;
|
|
184
|
+
datasetIndex: number;
|
|
185
|
+
point: ScatterEditablePoint;
|
|
186
|
+
points: ScatterEditablePoint[];
|
|
187
|
+
replacedIndex?: number;
|
|
188
|
+
}
|
|
189
|
+
interface ScatterEditablePointLimitContext {
|
|
190
|
+
chart: Chart$1<'scatter'>;
|
|
191
|
+
datasetIndex: number;
|
|
192
|
+
point: ScatterEditablePoint;
|
|
193
|
+
points: ScatterEditablePoint[];
|
|
194
|
+
maxPoints: number;
|
|
195
|
+
}
|
|
196
|
+
interface ScatterEditablePointsOptions {
|
|
197
|
+
/** 입력 포인트를 넣을 데이터셋 인덱스입니다. `datasetLabel` 보다 우선합니다. */
|
|
198
|
+
datasetIndex?: number;
|
|
199
|
+
/** 입력 포인트를 넣을 데이터셋 라벨입니다. `datasetIndex` 가 없을 때 사용합니다. */
|
|
200
|
+
datasetLabel?: string;
|
|
201
|
+
/** 최대 입력 포인트 수입니다. 미지정 시 제한하지 않습니다. */
|
|
202
|
+
maxPoints?: number;
|
|
203
|
+
/** 기존 포인트와 X축 거리가 이 값 이하면 새로 추가하지 않고 교체합니다. */
|
|
204
|
+
replaceThreshold?: number;
|
|
205
|
+
/** 클릭 좌표를 축 min/max 안으로 보정합니다. 기본값은 `true` 입니다. */
|
|
206
|
+
clamp?: boolean;
|
|
207
|
+
/** 입력값 소수점 자리수입니다. 미지정 시 반올림하지 않습니다. */
|
|
208
|
+
precision?: number;
|
|
209
|
+
/** 포인트 정렬 기준입니다. 기본값은 `x` 입니다. `false` 를 주면 정렬하지 않습니다. */
|
|
210
|
+
sortBy?: 'x' | 'y' | false;
|
|
211
|
+
/** 차트 데이터를 직접 갱신하고 `chart.update()` 를 호출할지 여부입니다. 기본값은 `true` 입니다. */
|
|
212
|
+
updateChart?: boolean;
|
|
213
|
+
/** 포인트 추가/교체 후 호출됩니다. */
|
|
214
|
+
onChange?: (context: ScatterEditablePointChangeContext) => void;
|
|
215
|
+
/** 최대 포인트 수를 초과할 때 호출됩니다. */
|
|
216
|
+
onLimitExceeded?: (context: ScatterEditablePointLimitContext) => void;
|
|
217
|
+
}
|
|
178
218
|
|
|
179
219
|
/**
|
|
180
220
|
* ═════════════════════════════════════════════════════════════
|
|
@@ -916,6 +956,7 @@ interface ScatterChartBuilder extends CartesianChartBuilder<'scatter'> {
|
|
|
916
956
|
addQuadrant(options?: ScatterQuadrantOptions): this;
|
|
917
957
|
addTrendLine(options?: ScatterTrendLineOptions): this;
|
|
918
958
|
addCrosshair(options?: ScatterCrosshairOptions): this;
|
|
959
|
+
addEditablePoints(options?: ScatterEditablePointsOptions): this;
|
|
919
960
|
highlightPoints(predicate: (point: ScatterPointContext) => boolean, style?: ScatterPointHighlightStyle): this;
|
|
920
961
|
setAxisRangeFromData(padding?: number | ScatterAxisRangePadding): this;
|
|
921
962
|
}
|
|
@@ -1062,6 +1103,10 @@ type Types_ScatterAxisRangePadding = ScatterAxisRangePadding;
|
|
|
1062
1103
|
type Types_ScatterChartBuilder = ScatterChartBuilder;
|
|
1063
1104
|
type Types_ScatterCrosshairOptions = ScatterCrosshairOptions;
|
|
1064
1105
|
type Types_ScatterDataset = ScatterDataset;
|
|
1106
|
+
type Types_ScatterEditablePoint = ScatterEditablePoint;
|
|
1107
|
+
type Types_ScatterEditablePointChangeContext = ScatterEditablePointChangeContext;
|
|
1108
|
+
type Types_ScatterEditablePointLimitContext = ScatterEditablePointLimitContext;
|
|
1109
|
+
type Types_ScatterEditablePointsOptions = ScatterEditablePointsOptions;
|
|
1065
1110
|
type Types_ScatterPointContext = ScatterPointContext;
|
|
1066
1111
|
type Types_ScatterPointHighlightStyle = ScatterPointHighlightStyle;
|
|
1067
1112
|
type Types_ScatterQuadrantOptions = ScatterQuadrantOptions;
|
|
@@ -1082,7 +1127,7 @@ type Types_TimeUnit = TimeUnit;
|
|
|
1082
1127
|
type Types_TreemapChartBuilder = TreemapChartBuilder;
|
|
1083
1128
|
type Types_UidImageMapping = UidImageMapping;
|
|
1084
1129
|
declare namespace Types {
|
|
1085
|
-
export type { Types_Align as Align, Types_ArcChartBuilder as ArcChartBuilder, Types_ArcChartType as ArcChartType, Types_ArcDataset as ArcDataset, 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_CustomChartDatasets as CustomChartDatasets, Types_CustomChartOptions as CustomChartOptions, Types_CustomDoughnutChartOptions as CustomDoughnutChartOptions, Types_CustomLineChartOptions as CustomLineChartOptions, Types_CustomOptionPlugins as CustomOptionPlugins, Types_CustomPieChartOptions as CustomPieChartOptions, Types_CustomScatterChartOptions as CustomScatterChartOptions, Types_CustomTreemapChartOptions as CustomTreemapChartOptions, Types_CustomTreemapDataset as CustomTreemapDataset, Types_DeepPartial as DeepPartial, Types_DeepPartialCartesianAxes as DeepPartialCartesianAxes, Types_DeepPartialPluginOptions as DeepPartialPluginOptions, Types_DoughnutChartBuilder as DoughnutChartBuilder, Types_GaugeInternalOptions as GaugeInternalOptions, Types_GaugeNeedleOptions as GaugeNeedleOptions, Types_GaugeSegment as GaugeSegment, Types_GaugeValueTextOptions as GaugeValueTextOptions, Types_HierarchicalChartType as HierarchicalChartType, Types_HtmlLegendOptions as HtmlLegendOptions, Types_LineChartBuilder as LineChartBuilder, Types_Mode as Mode, Types_Override as Override, Types_PieChartBuilder as PieChartBuilder, Types_Position as Position, Types_RadarChartBuilder as RadarChartBuilder, Types_RadialChartType as RadialChartType, Types_ScatterAxisRangePadding as ScatterAxisRangePadding, Types_ScatterChartBuilder as ScatterChartBuilder, Types_ScatterCrosshairOptions as ScatterCrosshairOptions, Types_ScatterDataset as ScatterDataset, Types_ScatterPointContext as ScatterPointContext, Types_ScatterPointHighlightStyle as ScatterPointHighlightStyle, Types_ScatterQuadrantOptions as ScatterQuadrantOptions, Types_ScatterTrendLineOptions as ScatterTrendLineOptions, Types_SegmentImageConfig as SegmentImageConfig, Types_SettingOptions as SettingOptions, Types_SpinnerOverlayConfig as SpinnerOverlayConfig, Types_SpinnerOverlayOption as SpinnerOverlayOption, Types_SpinnerOverlayRenderContext as SpinnerOverlayRenderContext, Types_SpinnerOverlaySpinnerContent as SpinnerOverlaySpinnerContent, Types_SpinnerOverlayStyle as SpinnerOverlayStyle, Types_StzClickContext as StzClickContext, Types_StzClickHandler as StzClickHandler, Types_StzClickItem as StzClickItem, Types_TimeScaleConfig as TimeScaleConfig, Types_TimeScaleType as TimeScaleType, Types_TimeUnit as TimeUnit, Types_TreemapChartBuilder as TreemapChartBuilder, Types_UidImageMapping as UidImageMapping };
|
|
1130
|
+
export type { Types_Align as Align, Types_ArcChartBuilder as ArcChartBuilder, Types_ArcChartType as ArcChartType, Types_ArcDataset as ArcDataset, 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_CustomChartDatasets as CustomChartDatasets, Types_CustomChartOptions as CustomChartOptions, Types_CustomDoughnutChartOptions as CustomDoughnutChartOptions, Types_CustomLineChartOptions as CustomLineChartOptions, Types_CustomOptionPlugins as CustomOptionPlugins, Types_CustomPieChartOptions as CustomPieChartOptions, Types_CustomScatterChartOptions as CustomScatterChartOptions, Types_CustomTreemapChartOptions as CustomTreemapChartOptions, Types_CustomTreemapDataset as CustomTreemapDataset, Types_DeepPartial as DeepPartial, Types_DeepPartialCartesianAxes as DeepPartialCartesianAxes, Types_DeepPartialPluginOptions as DeepPartialPluginOptions, Types_DoughnutChartBuilder as DoughnutChartBuilder, Types_GaugeInternalOptions as GaugeInternalOptions, Types_GaugeNeedleOptions as GaugeNeedleOptions, Types_GaugeSegment as GaugeSegment, Types_GaugeValueTextOptions as GaugeValueTextOptions, Types_HierarchicalChartType as HierarchicalChartType, Types_HtmlLegendOptions as HtmlLegendOptions, Types_LineChartBuilder as LineChartBuilder, Types_Mode as Mode, Types_Override as Override, Types_PieChartBuilder as PieChartBuilder, Types_Position as Position, Types_RadarChartBuilder as RadarChartBuilder, Types_RadialChartType as RadialChartType, Types_ScatterAxisRangePadding as ScatterAxisRangePadding, Types_ScatterChartBuilder as ScatterChartBuilder, Types_ScatterCrosshairOptions as ScatterCrosshairOptions, Types_ScatterDataset as ScatterDataset, Types_ScatterEditablePoint as ScatterEditablePoint, Types_ScatterEditablePointChangeContext as ScatterEditablePointChangeContext, Types_ScatterEditablePointLimitContext as ScatterEditablePointLimitContext, Types_ScatterEditablePointsOptions as ScatterEditablePointsOptions, Types_ScatterPointContext as ScatterPointContext, Types_ScatterPointHighlightStyle as ScatterPointHighlightStyle, Types_ScatterQuadrantOptions as ScatterQuadrantOptions, Types_ScatterTrendLineOptions as ScatterTrendLineOptions, Types_SegmentImageConfig as SegmentImageConfig, Types_SettingOptions as SettingOptions, Types_SpinnerOverlayConfig as SpinnerOverlayConfig, Types_SpinnerOverlayOption as SpinnerOverlayOption, Types_SpinnerOverlayRenderContext as SpinnerOverlayRenderContext, Types_SpinnerOverlaySpinnerContent as SpinnerOverlaySpinnerContent, Types_SpinnerOverlayStyle as SpinnerOverlayStyle, Types_StzClickContext as StzClickContext, Types_StzClickHandler as StzClickHandler, Types_StzClickItem as StzClickItem, Types_TimeScaleConfig as TimeScaleConfig, Types_TimeScaleType as TimeScaleType, Types_TimeUnit as TimeUnit, Types_TreemapChartBuilder as TreemapChartBuilder, Types_UidImageMapping as UidImageMapping };
|
|
1086
1131
|
}
|
|
1087
1132
|
|
|
1088
1133
|
interface ChartConfig {
|
|
@@ -2232,6 +2277,12 @@ declare class ScatterChart extends CartesianChart<'scatter'> implements ScatterC
|
|
|
2232
2277
|
private applyPointOption;
|
|
2233
2278
|
private collectScatterPoints;
|
|
2234
2279
|
private resolveAxisBounds;
|
|
2280
|
+
private resolveEditableDatasetIndex;
|
|
2281
|
+
private resolveEditablePoint;
|
|
2282
|
+
private clampEditablePointValue;
|
|
2283
|
+
private isEditablePoint;
|
|
2284
|
+
private resolveEditablePointSeq;
|
|
2285
|
+
private upsertEditablePoint;
|
|
2235
2286
|
/**
|
|
2236
2287
|
* @description 값에 따라 포인트 색상을 정합니다.
|
|
2237
2288
|
* @param {(point: ScatterPointContext) => string} resolver
|
|
@@ -2313,6 +2364,24 @@ declare class ScatterChart extends CartesianChart<'scatter'> implements ScatterC
|
|
|
2313
2364
|
* });
|
|
2314
2365
|
*/
|
|
2315
2366
|
addCrosshair(options?: ScatterCrosshairOptions): this;
|
|
2367
|
+
/**
|
|
2368
|
+
* @description 클릭한 축 좌표를 지정 데이터셋에 포인트로 추가하거나 교체합니다.
|
|
2369
|
+
* @param options
|
|
2370
|
+
* @returns {this}
|
|
2371
|
+
* @since 2.4.3
|
|
2372
|
+
* @example
|
|
2373
|
+
* chart.addEditablePoints({
|
|
2374
|
+
* datasetIndex: 1,
|
|
2375
|
+
* maxPoints: 10,
|
|
2376
|
+
* replaceThreshold: 5,
|
|
2377
|
+
* precision: 2,
|
|
2378
|
+
* onChange: ({ point, points }) => {
|
|
2379
|
+
* console.log('added point', point);
|
|
2380
|
+
* console.log('all points', points);
|
|
2381
|
+
* },
|
|
2382
|
+
* });
|
|
2383
|
+
*/
|
|
2384
|
+
addEditablePoints(options?: ScatterEditablePointsOptions): this;
|
|
2316
2385
|
/**
|
|
2317
2386
|
* @description 데이터 강조를 합니다.
|
|
2318
2387
|
* @param predicate
|
|
@@ -4211,4 +4280,4 @@ declare const T$: {
|
|
|
4211
4280
|
};
|
|
4212
4281
|
|
|
4213
4282
|
export { ArcChart, ArcChart as ArcChartWrapper, BarChart, BarChart as BarChartWrapper, BubbleChart, BubbleChart as BubbleChartWrapper, CartesianChart, CartesianChart as CartesianChartWrapper, Chart, ChartFactory, ChartInstance, ChartToolBox, ChartTypes, Chart as ChartWrapper, CreateZoomRangeSlider, DefaultArcRadius, DefaultDataLabelsOptions, DefaultHiddenLegendTopOptions, DefaultHiddenSparkScales, DefaultResponsiveChartOptions, DefaultSparkPluginOptions, DefaultTimeScaleOptions, DefaultTopLegendOptions, DefaultZoomOptions, DoughnutChart, DoughnutChart as DoughnutChartWrapper, LineChart, LineChart as LineChartWrapper, PieChart, PieChart as PieChartWrapper, ScatterChart, ScatterChart as ScatterChartWrapper, T$, TreemapChart, TreemapChart as TreemapChartWrapper, barScaleImgPlugin, blinkPlugin, changeSetting, chartMountPlugin, clearChartActiveElements, createAssignedTasksPlugin, createDefaultBarOptions, createDefaultBubbleOptions, createDefaultCartesianScales, createDefaultDoughnutOptions, createDefaultLineOptions, createDefaultPieOptions, createDefaultScatterOptions, createDefaultTreemapOptions, createScatterCrosshairPlugin, createScatterQuadrantPlugin, createScatterTrendLinePlugin, createStatusPlugin, createTodayLinePlugin, createWeekendPlugin, customDatasetPlugins, customLegend, T$ as default, defaultBarScales, defaultBarTooltipCallback, defaultBubbleScales, defaultBubbleTooltipCallback, defaultDoughnutTooltipCallback, defaultLineScales, defaultLineTooltipCallback, defaultPieTooltipCallback, defaultScatterScales, defaultScatterTooltipCallback, defaultTreemapTooltipCallback, doughnutCenterTextPlugin, downloadChartAsImage, downloadChartAsImageByInstance, gaugeOverlayPlugin, getChartAsBase64, getChartAsBase64ByInstance, getChartAsBlob, getChartAsBlobByInstance, getChartDatasetMeta, getChartInstance, hideChartTooltip, isChartDatasetVisible, loadingPlugin, makeCenterHtml, mountChart, noDataPlugin, resetChartZoom, resizeChart, segmentImagePlugin, setChartActiveElements, setChartConfig, setChartDatasetVisibility, showChartTooltip, sparkBarOptions, sparkBubbleOptions, sparkLineOptions, toggleChartDatasetVisibility, updateChart, zoomRangeSlider, zoomResetPlugin };
|
|
4214
|
-
export type { Align, AllChartTypes, ArcChartBuilder, ArcChartType, ArcDataset, AutoZoomLimitMode, AutoZoomLimits, AxisColors, BarChartBuilder, BubbleChartBuilder, CartesianChartBuilder, CartesianChartType, CartesianDataset, ChartBuilder, ChartImageExportOptions, ChartTarget, ChartWithFocus, Color, CommonAxes, CommonAxesSacels, CommonCartesian, CommonCartesianAxes, CommonCartesianLegendConfig, CommonCartesianTicks, CommonCartesianTitleConfig, CommonTicks, Constructor, CustomArcChartOptions, CustomBarChartOptions, CustomBubbleChartOptions, CustomCartesianDataset, CustomChartDatasets, CustomChartOptions, CustomDoughnutChartOptions, CustomLineChartOptions, CustomOptionPlugins, CustomPieChartOptions, CustomScatterChartOptions, CustomTreemapChartOptions, CustomTreemapDataset, CustomZoomType, DataLabels, DataLabelsContext, DatasetWithPrevColors, DeepPartial, DeepPartialCartesianAxes, DeepPartialPluginOptions, DeepPartialZoomType, DoughnutChartBuilder, FocusCallback, GaugeInternalOptions, GaugeNeedleOptions, GaugeSegment, GaugeValueTextOptions, HierarchicalChartType, HtmlLegendOptions, LineChartBuilder, Mode, MountChartHandle, OriginalColors, Override, PartialDataLabels, PieChartBuilder, Position, RadarChartBuilder, RadialChartType, ScaleWithOriginalColors, ScatterAxisRangePadding, ScatterChartBuilder, ScatterCrosshairOptions, ScatterDataset, ScatterPointContext, ScatterPointHighlightStyle, ScatterQuadrantOptions, ScatterTrendLineOptions, SegmentImageConfig, SettingOptions, SpinnerOverlayConfig, SpinnerOverlayOption, SpinnerOverlayRenderContext, SpinnerOverlaySpinnerContent, SpinnerOverlayStyle, StzClickContext, StzClickHandler, StzClickItem, StzConfig, TimeScaleConfig, TimeScaleType, TimeUnit, TreemapChartBuilder, UidImageMapping, ZoomLimitOptions, ZoomRangeSliderColors, ZoomRangeSliderPlugin, ZoomRangeSliderVar, ZoomScaleLimits };
|
|
4283
|
+
export type { Align, AllChartTypes, ArcChartBuilder, ArcChartType, ArcDataset, AutoZoomLimitMode, AutoZoomLimits, AxisColors, BarChartBuilder, BubbleChartBuilder, CartesianChartBuilder, CartesianChartType, CartesianDataset, ChartBuilder, ChartImageExportOptions, ChartTarget, ChartWithFocus, Color, CommonAxes, CommonAxesSacels, CommonCartesian, CommonCartesianAxes, CommonCartesianLegendConfig, CommonCartesianTicks, CommonCartesianTitleConfig, CommonTicks, Constructor, CustomArcChartOptions, CustomBarChartOptions, CustomBubbleChartOptions, CustomCartesianDataset, CustomChartDatasets, CustomChartOptions, CustomDoughnutChartOptions, CustomLineChartOptions, CustomOptionPlugins, CustomPieChartOptions, CustomScatterChartOptions, CustomTreemapChartOptions, CustomTreemapDataset, CustomZoomType, DataLabels, DataLabelsContext, DatasetWithPrevColors, DeepPartial, DeepPartialCartesianAxes, DeepPartialPluginOptions, DeepPartialZoomType, DoughnutChartBuilder, FocusCallback, GaugeInternalOptions, GaugeNeedleOptions, GaugeSegment, GaugeValueTextOptions, HierarchicalChartType, HtmlLegendOptions, LineChartBuilder, Mode, MountChartHandle, OriginalColors, Override, PartialDataLabels, PieChartBuilder, Position, RadarChartBuilder, RadialChartType, ScaleWithOriginalColors, ScatterAxisRangePadding, ScatterChartBuilder, ScatterCrosshairOptions, ScatterDataset, ScatterEditablePoint, ScatterEditablePointChangeContext, ScatterEditablePointLimitContext, ScatterEditablePointsOptions, ScatterPointContext, ScatterPointHighlightStyle, ScatterQuadrantOptions, ScatterTrendLineOptions, SegmentImageConfig, SettingOptions, SpinnerOverlayConfig, SpinnerOverlayOption, SpinnerOverlayRenderContext, SpinnerOverlaySpinnerContent, SpinnerOverlayStyle, StzClickContext, StzClickHandler, StzClickItem, StzConfig, TimeScaleConfig, TimeScaleType, TimeUnit, TreemapChartBuilder, UidImageMapping, ZoomLimitOptions, ZoomRangeSliderColors, ZoomRangeSliderPlugin, ZoomRangeSliderVar, ZoomScaleLimits };
|