igniteui-angular-extras 19.1.1 → 20.0.0
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/fesm2022/igniteui-angular-extras.mjs +46 -26
- package/fesm2022/igniteui-angular-extras.mjs.map +1 -1
- package/index.d.ts +322 -5
- package/package.json +4 -4
- package/images/charts.d.ts +0 -16
- package/images/conditions.d.ts +0 -10
- package/lib/context-menu/chart-dialog/chart-dialog.component.d.ts +0 -31
- package/lib/context-menu/context-menu.component.d.ts +0 -38
- package/lib/context-menu/igx-context-menu.directive.d.ts +0 -35
- package/lib/directives/chart-integration/chart-integration.directive.d.ts +0 -53
- package/lib/directives/chart-integration/chart-types.d.ts +0 -25
- package/lib/directives/chart-integration/initializers.d.ts +0 -39
- package/lib/directives/conditional-formatting/conditional-formatting.directive.d.ts +0 -95
- package/lib/page-header/page-header.component.d.ts +0 -6
- package/lib/pipes/svg.pipe.d.ts +0 -10
- package/public-api.d.ts +0 -21
package/index.d.ts
CHANGED
|
@@ -1,5 +1,322 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Type, EventEmitter, ComponentFactoryResolver, ViewContainerRef, AfterViewInit, OnDestroy, OnInit, ElementRef, PipeTransform } from '@angular/core';
|
|
3
|
+
import { IgxPieChartComponent, IgxDataChartComponent } from 'igniteui-angular-charts';
|
|
4
|
+
import { IgxGridComponent, IgxOverlayService, IgxToggleDirective, IgxTabsComponent } from 'igniteui-angular';
|
|
5
|
+
import { Subject } from 'rxjs';
|
|
6
|
+
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
7
|
+
|
|
8
|
+
declare enum CHART_TYPE {
|
|
9
|
+
PIE = "Pie",
|
|
10
|
+
COLUMN_GROUPED = "ColumnGrouped",
|
|
11
|
+
AREA_GROUPED = "AreaGrouped",
|
|
12
|
+
LINE_GROUPED = "LineGrouped",
|
|
13
|
+
BAR_GROUPED = "BarGrouped",
|
|
14
|
+
COLUMN_STACKED = "ColumnStacked",
|
|
15
|
+
AREA_STACKED = "AreaStacked",
|
|
16
|
+
LINE_STACKED = "LineStacked",
|
|
17
|
+
BAR_STACKED = "BarStacked",
|
|
18
|
+
COLUMN_100_STACKED = "Column100Stacked",
|
|
19
|
+
AREA_100_STACKED = "Area100Stacked",
|
|
20
|
+
LINE_100_STACKED = "Line100Stacked",
|
|
21
|
+
BAR_100_STACKED = "Bar100Stacked",
|
|
22
|
+
SCATTER_POINT = "ScatterPoint",
|
|
23
|
+
SCATTER_BUBBLE = "ScatterBubble",
|
|
24
|
+
SCATTER_LINE = "ScatterLine"
|
|
25
|
+
}
|
|
26
|
+
declare enum OPTIONS_TYPE {
|
|
27
|
+
CHART = "chartOptions",
|
|
28
|
+
SERIES = "seriesModel",
|
|
29
|
+
X_AXIS = "xAxisOptions",
|
|
30
|
+
Y_AXIS = "yAxisOptions",
|
|
31
|
+
STACKED_SERIES = "stackedFragmentOptions"
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
declare class SeriesFactory {
|
|
35
|
+
create<T>(type: (new () => T)): T;
|
|
36
|
+
}
|
|
37
|
+
interface IOptions {
|
|
38
|
+
[key: string]: any;
|
|
39
|
+
}
|
|
40
|
+
interface IChartComponentOptions {
|
|
41
|
+
chartOptions?: IOptions;
|
|
42
|
+
seriesOptions?: IOptions[];
|
|
43
|
+
xAxisOptions?: IOptions;
|
|
44
|
+
seriesModel?: IOptions;
|
|
45
|
+
yAxisOptions?: IOptions;
|
|
46
|
+
stackedFragmentOptions?: IOptions;
|
|
47
|
+
}
|
|
48
|
+
declare abstract class ChartInitializer {
|
|
49
|
+
protected yAxis: any;
|
|
50
|
+
protected xAxis: any;
|
|
51
|
+
protected seriesFactory: SeriesFactory;
|
|
52
|
+
constructor();
|
|
53
|
+
applyOptions(target: any, options: IOptions): void;
|
|
54
|
+
abstract initChart(chart: any, options?: IChartComponentOptions): any;
|
|
55
|
+
}
|
|
56
|
+
declare class IgxPieChartInitializer extends ChartInitializer {
|
|
57
|
+
constructor();
|
|
58
|
+
initChart(chart: IgxPieChartComponent, options: IChartComponentOptions): IgxPieChartComponent;
|
|
59
|
+
}
|
|
60
|
+
declare class IgxDataChartInitializer extends ChartInitializer {
|
|
61
|
+
seriesType: Type<any>;
|
|
62
|
+
constructor(seriesType: Type<any>);
|
|
63
|
+
initChart(chart: IgxDataChartComponent, options: IChartComponentOptions): IgxDataChartComponent;
|
|
64
|
+
}
|
|
65
|
+
declare class IgxStackedDataChartInitializer extends ChartInitializer {
|
|
66
|
+
seriesType: Type<any>;
|
|
67
|
+
constructor(seriesType: Type<any>);
|
|
68
|
+
initChart(chart: IgxDataChartComponent, options?: IChartComponentOptions): IgxDataChartComponent;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
interface IDeterminedChartTypesArgs {
|
|
72
|
+
chartsAvailability: Map<CHART_TYPE, boolean>;
|
|
73
|
+
chartsForCreation: CHART_TYPE[];
|
|
74
|
+
}
|
|
75
|
+
declare class IgxChartIntegrationDirective {
|
|
76
|
+
private factoryResolver;
|
|
77
|
+
get chartData(): any[];
|
|
78
|
+
set chartData(selectedData: any[]);
|
|
79
|
+
onChartTypesDetermined: EventEmitter<IDeterminedChartTypesArgs>;
|
|
80
|
+
onChartCreationDone: EventEmitter<any>;
|
|
81
|
+
useLegend: boolean;
|
|
82
|
+
defaultLabelMemberPath: string;
|
|
83
|
+
set scatterChartYAxisValueMemberPath(path: string);
|
|
84
|
+
get scatterChartYAxisValueMemberPath(): string;
|
|
85
|
+
set bubbleChartRadiusMemberPath(path: string);
|
|
86
|
+
get bubbleChartRadiusMemberPath(): string;
|
|
87
|
+
private chartTypesAvailability;
|
|
88
|
+
private customChartComponentOptions;
|
|
89
|
+
private dataCharts;
|
|
90
|
+
private _scatterChartYAxisValueMemberPath;
|
|
91
|
+
private _bubbleChartRadiusMemberPath;
|
|
92
|
+
private _valueMemberPaths;
|
|
93
|
+
private _labelMemberPaths;
|
|
94
|
+
private _chartData;
|
|
95
|
+
private _sizeScale;
|
|
96
|
+
private _dataChartTypes;
|
|
97
|
+
private get _labelMemberPath();
|
|
98
|
+
private get pieChartOptions();
|
|
99
|
+
private dataChartSeriesOptionsModel;
|
|
100
|
+
private scatterChartSeriesOptionsModel;
|
|
101
|
+
private bubbleChartSeriesOptionsModel;
|
|
102
|
+
private get dataChartOptions();
|
|
103
|
+
constructor(factoryResolver: ComponentFactoryResolver);
|
|
104
|
+
getAllChartTypes(): CHART_TYPE[];
|
|
105
|
+
getAvailableCharts(): any[];
|
|
106
|
+
disableCharts(types: CHART_TYPE[]): void;
|
|
107
|
+
enableCharts(types: CHART_TYPE[]): void;
|
|
108
|
+
chartFactory(type: CHART_TYPE, viewContainerRef?: ViewContainerRef, createdChart?: any): any;
|
|
109
|
+
private getInitializer;
|
|
110
|
+
private getChartOptions;
|
|
111
|
+
private addPieChartDataOptions;
|
|
112
|
+
private addDataChartDataOptions;
|
|
113
|
+
private addScatterChartDataOptions;
|
|
114
|
+
private addIndexMemberPath;
|
|
115
|
+
private setAxisLabelOption;
|
|
116
|
+
setChartComponentOptions(chart: CHART_TYPE, optionsType: OPTIONS_TYPE, options: IOptions): void;
|
|
117
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgxChartIntegrationDirective, never>;
|
|
118
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxChartIntegrationDirective, "[igxChartIntegration]", never, { "chartData": { "alias": "chartData"; "required": false; }; "useLegend": { "alias": "useLegend"; "required": false; }; "defaultLabelMemberPath": { "alias": "defaultLabelMemberPath"; "required": false; }; "scatterChartYAxisValueMemberPath": { "alias": "scatterChartYAxisValueMemberPath"; "required": false; }; "bubbleChartRadiusMemberPath": { "alias": "bubbleChartRadiusMemberPath"; "required": false; }; }, { "onChartTypesDetermined": "onChartTypesDetermined"; "onChartCreationDone": "onChartCreationDone"; }, never, never, true, never>;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
declare enum ConditionalFormattingType {
|
|
122
|
+
dataBars = "Data Bars",
|
|
123
|
+
colorScale = "Color Scale",
|
|
124
|
+
top10 = "Top 10",
|
|
125
|
+
textContains = "Text Contains",
|
|
126
|
+
single = "Duplicate Values",
|
|
127
|
+
unique = "Unique Values",
|
|
128
|
+
empty = "Empty"
|
|
129
|
+
}
|
|
130
|
+
interface IFormatColors {
|
|
131
|
+
success: string;
|
|
132
|
+
error: string;
|
|
133
|
+
info: string;
|
|
134
|
+
warning: string;
|
|
135
|
+
text: string;
|
|
136
|
+
}
|
|
137
|
+
declare class IgxConditionalFormattingDirective implements AfterViewInit, OnDestroy {
|
|
138
|
+
grid: IgxGridComponent;
|
|
139
|
+
formatter: string | ConditionalFormattingType;
|
|
140
|
+
set formatColors(val: IFormatColors);
|
|
141
|
+
get formatColors(): IFormatColors;
|
|
142
|
+
onFormattersReady: EventEmitter<string[]>;
|
|
143
|
+
colorScale: {
|
|
144
|
+
backgroundColor: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
145
|
+
};
|
|
146
|
+
dataBars: {
|
|
147
|
+
backgroundImage: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
148
|
+
backgroundSize: string;
|
|
149
|
+
backgroundRepeat: string;
|
|
150
|
+
backgroundPositionY: string;
|
|
151
|
+
};
|
|
152
|
+
top10Percent: {
|
|
153
|
+
backgroundColor: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
154
|
+
color: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
155
|
+
};
|
|
156
|
+
greaterThan: {
|
|
157
|
+
backgroundColor: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
158
|
+
color: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
159
|
+
};
|
|
160
|
+
empty: {
|
|
161
|
+
backgroundColor: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
162
|
+
color: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
163
|
+
};
|
|
164
|
+
duplicates: {
|
|
165
|
+
backgroundColor: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
166
|
+
color: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
167
|
+
};
|
|
168
|
+
textContains: {
|
|
169
|
+
backgroundColor: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
170
|
+
color: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
171
|
+
};
|
|
172
|
+
uniques: {
|
|
173
|
+
backgroundColor: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
174
|
+
color: (rowData: any, colname: any, cellValue: any, rowIndex: any) => string;
|
|
175
|
+
};
|
|
176
|
+
private get selectedData();
|
|
177
|
+
private get textData();
|
|
178
|
+
private get numericData();
|
|
179
|
+
private _formatColors;
|
|
180
|
+
private _numericFormatters;
|
|
181
|
+
private _textFormatters;
|
|
182
|
+
private _commonFormattersName;
|
|
183
|
+
private _selectedData;
|
|
184
|
+
private _minValue;
|
|
185
|
+
private _maxValue;
|
|
186
|
+
private _startColumn;
|
|
187
|
+
private _endColumn;
|
|
188
|
+
private _valueForComparison;
|
|
189
|
+
private _formattersData;
|
|
190
|
+
private destroy$;
|
|
191
|
+
private formatedRange;
|
|
192
|
+
constructor(grid: IgxGridComponent);
|
|
193
|
+
ngAfterViewInit(): void;
|
|
194
|
+
ngOnDestroy(): void;
|
|
195
|
+
formatCells(formatterName: any, formatRange?: [], reset?: boolean): void;
|
|
196
|
+
clearFormatting(): void;
|
|
197
|
+
determineFormatters(fromColumn: any): void;
|
|
198
|
+
recalcCachedValues(clearAll?: boolean): void;
|
|
199
|
+
isWithInFormattedRange(rowIndex: any, colID: any): boolean;
|
|
200
|
+
private get middleTresholdValue();
|
|
201
|
+
private get lowTresholdValue();
|
|
202
|
+
private get top10PercentTreshold();
|
|
203
|
+
private get avgValue();
|
|
204
|
+
private get threshold();
|
|
205
|
+
private getPositivePercentage;
|
|
206
|
+
private getNegativePercentage;
|
|
207
|
+
private resetRange;
|
|
208
|
+
private addToCache;
|
|
209
|
+
private toArray;
|
|
210
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgxConditionalFormattingDirective, never>;
|
|
211
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxConditionalFormattingDirective, "[igxConditionalFormatting]", never, { "formatter": { "alias": "formatter"; "required": false; }; "formatColors": { "alias": "formatColors"; "required": false; }; }, { "onFormattersReady": "onFormattersReady"; }, never, never, true, never>;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
declare class IgxContextMenuDirective implements OnInit, AfterViewInit, OnDestroy {
|
|
215
|
+
grid: IgxGridComponent;
|
|
216
|
+
textFormatter: IgxConditionalFormattingDirective;
|
|
217
|
+
chartsDirective: IgxChartIntegrationDirective;
|
|
218
|
+
private overlayService;
|
|
219
|
+
displayCreationTab: boolean;
|
|
220
|
+
onButtonClose: EventEmitter<any>;
|
|
221
|
+
formatters: any[];
|
|
222
|
+
charts: any[];
|
|
223
|
+
gridResizeNotify: Subject<void>;
|
|
224
|
+
private contentObserver;
|
|
225
|
+
private _range;
|
|
226
|
+
private _id;
|
|
227
|
+
private _collapsed;
|
|
228
|
+
private destroy$;
|
|
229
|
+
private _analyticsBtnSettings;
|
|
230
|
+
constructor(grid: IgxGridComponent, textFormatter: IgxConditionalFormattingDirective, chartsDirective: IgxChartIntegrationDirective, overlayService: IgxOverlayService);
|
|
231
|
+
ngOnInit(): void;
|
|
232
|
+
ngAfterViewInit(): void;
|
|
233
|
+
ngOnDestroy(): void;
|
|
234
|
+
private setUpGridListeners;
|
|
235
|
+
private renderButton;
|
|
236
|
+
private renderHeaderButton;
|
|
237
|
+
private show;
|
|
238
|
+
private close;
|
|
239
|
+
private isWithInRange;
|
|
240
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgxContextMenuDirective, [null, { optional: true; }, { optional: true; }, null]>;
|
|
241
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxContextMenuDirective, "[igxContextMenu]", never, { "displayCreationTab": { "alias": "displayCreationTab"; "required": false; }; }, { "onButtonClose": "onButtonClose"; }, never, never, true, never>;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
declare class IgxContextMenuComponent implements AfterViewInit, OnDestroy {
|
|
245
|
+
private overlayService;
|
|
246
|
+
button: ElementRef;
|
|
247
|
+
tabsMenu: IgxToggleDirective;
|
|
248
|
+
chartPreview: ViewContainerRef;
|
|
249
|
+
chartPreviewDialog: IgxToggleDirective;
|
|
250
|
+
tabs: IgxTabsComponent;
|
|
251
|
+
contextDirective: IgxContextMenuDirective;
|
|
252
|
+
chartTypes: any[];
|
|
253
|
+
textFormatters: any[];
|
|
254
|
+
currentChartType: any;
|
|
255
|
+
currentFormatter: any;
|
|
256
|
+
displayCreationTab: boolean;
|
|
257
|
+
private destroy$;
|
|
258
|
+
private _dialogId;
|
|
259
|
+
private _chartDialogOS;
|
|
260
|
+
private _tabsMenuOverlaySettings;
|
|
261
|
+
private _chartPreviewDialogOverlaySettings;
|
|
262
|
+
chartImages: any;
|
|
263
|
+
conditionImages: any;
|
|
264
|
+
constructor(overlayService: IgxOverlayService);
|
|
265
|
+
ngAfterViewInit(): void;
|
|
266
|
+
ngOnDestroy(): void;
|
|
267
|
+
toggleTabMenu(): void;
|
|
268
|
+
formatCells(condition: any): void;
|
|
269
|
+
clearFormat(): void;
|
|
270
|
+
previewChart(currentChartType: any): void;
|
|
271
|
+
hidePreview(): void;
|
|
272
|
+
openDialog(type?: CHART_TYPE): void;
|
|
273
|
+
closeDialog(): void;
|
|
274
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgxContextMenuComponent, never>;
|
|
275
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxContextMenuComponent, "igx-context-menu", never, {}, {}, never, never, true, never>;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
declare class IgxChartMenuComponent implements AfterViewInit {
|
|
279
|
+
private element;
|
|
280
|
+
chartArea: ViewContainerRef;
|
|
281
|
+
onClose: EventEmitter<any>;
|
|
282
|
+
get width(): any;
|
|
283
|
+
set width(value: any);
|
|
284
|
+
get height(): any;
|
|
285
|
+
set height(value: any);
|
|
286
|
+
chartDialogResizeNotify: Subject<unknown>;
|
|
287
|
+
private contentObserver;
|
|
288
|
+
images: any;
|
|
289
|
+
chartDirective: any;
|
|
290
|
+
currentChartType: any;
|
|
291
|
+
title: any;
|
|
292
|
+
allCharts: any[];
|
|
293
|
+
fullScreen: boolean;
|
|
294
|
+
isConfigAreaExpanded: boolean;
|
|
295
|
+
mainChartTypes: string[];
|
|
296
|
+
private _width;
|
|
297
|
+
private _height;
|
|
298
|
+
constructor(element: ElementRef<any>);
|
|
299
|
+
ngAfterViewInit(): void;
|
|
300
|
+
toggleFullScreen(): void;
|
|
301
|
+
hasAvailableChart(chartType: any): boolean;
|
|
302
|
+
createChart(chartType: any): void;
|
|
303
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgxChartMenuComponent, never>;
|
|
304
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxChartMenuComponent, "igx-chart-menu", never, {}, { "onClose": "onClose"; }, never, never, true, never>;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
declare class PageHeaderComponent {
|
|
308
|
+
title: string;
|
|
309
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PageHeaderComponent, never>;
|
|
310
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PageHeaderComponent, "app-page-header", never, { "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
declare class SvgPipe implements PipeTransform {
|
|
314
|
+
private sanitizer;
|
|
315
|
+
constructor(sanitizer: DomSanitizer);
|
|
316
|
+
transform(markup: string): SafeHtml;
|
|
317
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SvgPipe, never>;
|
|
318
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SvgPipe, "svg", true>;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
export { CHART_TYPE, ChartInitializer, ConditionalFormattingType, IgxChartIntegrationDirective, IgxChartMenuComponent, IgxConditionalFormattingDirective, IgxContextMenuComponent, IgxContextMenuDirective, IgxDataChartInitializer, IgxPieChartInitializer, IgxStackedDataChartInitializer, OPTIONS_TYPE, PageHeaderComponent, SvgPipe };
|
|
322
|
+
export type { IChartComponentOptions, IDeterminedChartTypesArgs, IFormatColors, IOptions };
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular-extras",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "20.0.0",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.0.0",
|
|
6
6
|
"igniteui-trial-watermark": "^3.0.2"
|
|
7
7
|
},
|
|
8
8
|
"peerDependencies": {
|
|
9
|
-
"@angular/common": "
|
|
10
|
-
"@angular/core": "
|
|
11
|
-
"igniteui-angular": "
|
|
9
|
+
"@angular/common": "20",
|
|
10
|
+
"@angular/core": "20",
|
|
11
|
+
"igniteui-angular": "20",
|
|
12
12
|
"igniteui-angular-charts": "19",
|
|
13
13
|
"igniteui-angular-core": "19"
|
|
14
14
|
},
|
package/images/charts.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export declare const Area100Stacked = "\n <svg id=\"Layer_1\" data-name=\"Layer 1\"\n xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-Area100Stacked-1{fill:#ab4191;}.cls-Area100Stacked-2{fill:#f05951;}.cls-Area100Stacked-2,.cls-Area100Stacked-3,.cls-Area100Stacked-4{fill-rule:evenodd;}.cls-Area100Stacked-3{fill:#fa8d3d;}.cls-Area100Stacked-4{fill:#0f6860;}</style>\n </defs>\n <rect class=\"cls-Area100Stacked-1\" width=\"96\" height=\"95.7\"/>\n <polygon class=\"cls-Area100Stacked-2\" points=\"0 11.1 3.78 11.99 11.33 25.27 20.15 13.04 30.53 15.31 43.12 26.54 50.13 28.07 65.78 24.5 72.08 16.84 82.15 17.61 88.45 11.99 91.91 9.57 96 6.13 96 95.7 0 95.7 0 11.1\"/>\n <path class=\"cls-Area100Stacked-3\" d=\"M0,54V95.7H96V18.37l-3.79,6.51-3.79,18-3.16,6.51-5.68,3.06-2.84,3.45s-3.42,6-3.48,6.12-7.58,4.6-7.58,4.6L60,67l-2.21.77-7.9-4.6-3.78,1.15-7.58-3.44L34.42,62.4l-3.79-1.15-4.1,3.44-3.48-.76L15.16,53.21,7.26,54,3.47,49Z\"/>\n <polygon class=\"cls-Area100Stacked-4\" points=\"0 78.75 4.72 77.11 7.87 78.2 15.42 76.56 19.52 80.39 26.44 83.67 36.2 83.67 45.33 85.31 50.05 78.75 58.23 84.22 68.3 85.86 87.82 90.23 96 83.12 96 95.7 0 95.7 0 78.75\"/>\n</svg>\n";
|
|
2
|
-
export declare const AreaGrouped = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-AreaGrouped-1{fill:#ab4191;}.cls-AreaGrouped-1,.cls-AreaGrouped-2,.cls-AreaGrouped-3,.cls-AreaGrouped-4{fill-rule:evenodd;}.cls-AreaGrouped-2{fill:#f05951;}.cls-AreaGrouped-3{fill:#fa8d3d;}.cls-AreaGrouped-4{fill:#0f6860;}</style>\n </defs>\n <g id=\"ChartNames\">\n <polygon class=\"cls-AreaGrouped-1\" points=\"96 69.18 96 13.76 80.22 37.03 64.11 42.35 48.34 63.44 32.56 72.38 16.45 70.78 0 86.13 0 96 96 96 96 69.18\"/>\n <polygon class=\"cls-AreaGrouped-2\" points=\"96 84.43 96 38.72 80.22 48.72 64.11 72.86 48.34 72.62 32.56 81.54 16.78 79.11 0 90.25 0 96 96 96 96 84.43\"/>\n <path class=\"cls-AreaGrouped-3\" d=\"M96,91V62.08L80.22,66.71l-16.11,15-15.77.9L32.56,88s-16.12-.84-16.11-.76S0,92.65,0,92.65V96H96Z\"/>\n <polygon class=\"cls-AreaGrouped-4\" points=\"96 93.77 96 77.49 80.22 81.31 64.11 91.54 48.34 93.13 32.56 94.09 0 95.37 0 96 96 96 96 93.77\"/>\n </g>\n</svg>\n";
|
|
3
|
-
export declare const AreaStacked = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-AreaStacked-1{fill:#ab4191;}.cls-AreaStacked-1,.cls-AreaStacked-2,.cls-AreaStacked-3,.cls-AreaStacked-4{fill-rule:evenodd;}.cls-AreaStacked-2{fill:#f05951;}.cls-AreaStacked-3{fill:#fa8d3d;}.cls-AreaStacked-4{fill:#0f6860;}</style>\n </defs>\n <g id=\"ChartNames\">\n <path class=\"cls-AreaStacked-1\" d=\"M0,17.24,3.73,4.7l7.56,19.2,4.09-.78,7.87,11.75,3.46,1.57,3.78-3.13,4.41,2,3.46-2.75,4.72,2.35L45.91,38s4-.26,4.09-.39,7.45,4.57,7.56,4.7a35.11,35.11,0,0,0,3.77-1.57h4.41L72,43.49,82.11,28.21,88.4,10.32,91.86,0,96,12.15V96H0Z\"/>\n <path class=\"cls-AreaStacked-2\" d=\"M0,53.29V96H96V16.85l-3.79,6.66L88.38,41.93l-3.16,6.66-5.68,3.13-2.85,3.53s-3.42,6.14-3.47,6.27-7.58,4.7-7.58,4.7L60,66.61l-2.21.79-7.9-4.71-3.79,1.18-7.58-3.53-4.1,1.57-3.79-1.18-4.11,3.53L23,63.48l-7.89-11-7.9.78L3.43,48.2Z\"/>\n <polygon class=\"cls-AreaStacked-3\" points=\"0.14 78.65 4.85 76.97 7.99 78.09 15.54 76.41 19.62 80.33 26.53 83.69 36.27 83.69 45.38 85.37 50.09 78.65 58.26 84.25 68.31 85.93 87.79 90.4 95.96 83.12 95.96 96 0.14 96 0.14 78.65\"/>\n <polygon class=\"cls-AreaStacked-4\" points=\"0.14 96 95.96 96 95.96 74.45 92.19 79.15 80.56 83.07 69.25 91.3 58.57 91.69 54.17 92.08 49.78 90.12 45.38 91.3 38.47 91.3 28.73 91.69 23.7 91.3 18.99 92.86 13.96 92.08 0.14 93.65 0.14 96\"/>\n </g>\n</svg>\n";
|
|
4
|
-
export declare const Bar100Stacked = "\n <svg id=\"Layer_1\" data-name=\"Layer 1\"\n xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-Bar100Stacked-1{fill:#ab4191;}.cls-Bar100Stacked-1,.cls-Bar100Stacked-2,.cls-Bar100Stacked-3,.cls-Bar100Stacked-4{fill-rule:evenodd;}.cls-Bar100Stacked-2{fill:#f05951;}.cls-Bar100Stacked-3{fill:#fa8d3d;}.cls-Bar100Stacked-4,.cls-Bar100Stacked-5{fill:#0f6860;}</style>\n </defs>\n <path class=\"cls-Bar100Stacked-1\" d=\"M96,7.84H45.71v11.1H96Zm0,13.38H47.67V32.33H96Zm0,13.39H42.45V46H96Zm0,13.72H48.33v11.1H96Zm0,13.38H43.43V72.82H96ZM96,75.1H42.12V86.2H96Z\"/>\n <path class=\"cls-Bar100Stacked-2\" d=\"M75.76,21.22H29.71V32.33H75.76ZM66,61.71H27.1V72.82H66Zm4.24-27.1h-48V46h48ZM56.82,48.33H30v11.1H56.82ZM73.47,75.1H25.8V86.2H73.47ZM60.73,7.84h-33v11.1h33Z\"/>\n <path class=\"cls-Bar100Stacked-3\" d=\"M47.67,21.22H8.16V32.33H47.67ZM39.51,61.71H5.88V72.82H39.51Zm3.59-27.1H1.63V46H43.1ZM31.35,48.33H8.16v11.1H31.35ZM45.71,75.1H4.57V86.2H45.71ZM34.61,7.84H6.2v11.1H34.61Z\"/>\n <path class=\"cls-Bar100Stacked-4\" d=\"M14,34.61H0V46H14Zm4.25,13.72H0v11.1H18.29ZM15,75.1H0V86.2H15ZM22.2,21.22H0V32.33H22.2ZM11.43,61.71H0V72.82H11.43Z\"/>\n <rect class=\"cls-Bar100Stacked-5\" y=\"7.84\" width=\"10.78\" height=\"11.1\"/>\n</svg>\n";
|
|
5
|
-
export declare const BarGrouped = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-BarGrouped-1{fill:#f05951;}.cls-BarGrouped-2{fill:#ab4191;}.cls-BarGrouped-3{fill:#0f6860;}.cls-BarGrouped-4{fill:#fa8d3d;}</style>\n </defs>\n <g id=\"ChartNames\">\n <rect class=\"cls-BarGrouped-1\" y=\"77.13\" width=\"21.19\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-1\" y=\"49.66\" width=\"48.99\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-1\" y=\"22.18\" width=\"72.5\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-2\" y=\"70.84\" width=\"81.43\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-3\" y=\"89.71\" width=\"60.25\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-2\" y=\"43.37\" width=\"96\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-3\" y=\"62.23\" width=\"33.43\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-2\" y=\"15.89\" width=\"55.61\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-3\" y=\"34.76\" width=\"45.35\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-4\" y=\"83.42\" width=\"89.38\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-4\" y=\"55.94\" width=\"70.84\" height=\"6.29\"/>\n <rect class=\"cls-BarGrouped-4\" y=\"28.47\" width=\"33.43\" height=\"6.29\"/>\n </g>\n</svg>\n";
|
|
6
|
-
export declare const BarStacked = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-BarStacked-1{fill:#ab4191;}.cls-BarStacked-1,.cls-BarStacked-2,.cls-BarStacked-3,.cls-BarStacked-4{fill-rule:evenodd;}.cls-BarStacked-2{fill:#f05951;}.cls-BarStacked-3{fill:#fa8d3d;}.cls-BarStacked-4{fill:#0f6860;}</style>\n </defs>\n <g id=\"ChartNames\">\n <path class=\"cls-BarStacked-1\" d=\"M53.9,8.85H14.58V19.66H53.9ZM86.33,22.28H21.46V33.09H86.33ZM71.26,35.71H14.91V46.85H71.26ZM53.57,49.47H11.63V60.29H53.57ZM95.84,62.91H21.46V73.72H95.84Zm-36,13.43H14.91V87.15H59.8Z\"/>\n <path class=\"cls-BarStacked-2\" d=\"M41.12,8.85H14.58V19.66H41.12ZM61.76,22.28H21.46V33.09h40.3ZM46.69,35.71H14.91V46.85H46.69ZM41.77,49.47H11.63V60.29H41.77ZM62.09,62.91H21.46V73.72H62.09ZM42.76,76.34H14.91V87.15H42.76Z\"/>\n <path class=\"cls-BarStacked-3\" d=\"M31.62,8.85h-17V19.66h17ZM45.38,22.28H21.46V33.09H45.38Zm-9.5,13.43h-21V46.85h21Zm-2.3,13.76H11.63V60.29H33.58Zm8.85,13.44h-21V73.72h21ZM31,76.34h-16V87.15H31Z\"/>\n <path class=\"cls-BarStacked-4\" d=\"M14.91,8.85H.16V19.66H14.91ZM27.36,22.28H.16V33.09h27.2ZM19.17,35.71H.16V46.85h19ZM15.56,49.47H.16V60.29h15.4ZM27.69,62.91H.16V73.72H27.69ZM16.22,76.34H.16V87.15H16.22Z\"/>\n </g>\n</svg>\n";
|
|
7
|
-
export declare const Column100Stacked = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-Column100Stacked-1{fill:#ab4191;}.cls-Column100Stacked-1,.cls-Column100Stacked-2,.cls-Column100Stacked-3,.cls-Column100Stacked-4{fill-rule:evenodd;}.cls-Column100Stacked-2{fill:#f05951;}.cls-Column100Stacked-3{fill:#fa8d3d;}.cls-Column100Stacked-4{fill:#0f6860;}</style>\n </defs>\n <g id=\"ChartNames\">\n <path class=\"cls-Column100Stacked-1\" d=\"M0,0V50.28H13.81V0ZM16.44,0V48.44H30.25V0ZM32.88,0V53.51h13.8V0ZM49.32,0V47.78h13.8V0ZM65.75,0V52.68H79.56V0ZM82.19,0V54H96V0Z\"/>\n <path class=\"cls-Column100Stacked-2\" d=\"M16.44,20.35V66.43H30.25V20.35ZM65.75,30V68.74H79.56V30ZM32.88,25.73v48h13.8v-48ZM49.32,39.17V66.05h13.8V39.17ZM82.19,22.66V70.27H96V22.66ZM0,35.33v33H13.81v-33Z\"/>\n <path class=\"cls-Column100Stacked-3\" d=\"M16.44,48.38V87.94H30.25V48.38Zm49.31,8.07V90.24H79.56V56.45ZM32.88,53V94.46h13.8V53ZM49.32,64.51V87.94h13.8V64.51ZM82.19,50.3V91.39H96V50.3ZM0,61.44V89.86H13.81V61.44Z\"/>\n <path class=\"cls-Column100Stacked-4\" d=\"M32.88,82.11V96h13.8V82.11Zm16.44-4.45V96h13.8V77.66Zm32.87,3.41V96H96V81.07ZM16.44,73.73V96H30.25V73.73ZM65.75,84.47V96H79.56V84.47ZM0,85.08V96H13.81V85.08Z\"/>\n </g>\n</svg>\n";
|
|
8
|
-
export declare const ColumnGrouped = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-ColumnGrouped-1{fill:#fa8d3d;}.cls-ColumnGrouped-2{fill:#f05951;}.cls-ColumnGrouped-3{fill:#0f6860;}.cls-ColumnGrouped-4{fill:#ab4191;}</style>\n </defs>\n <g id=\"ChartNames\">\n <rect class=\"cls-ColumnGrouped-1\" x=\"14.87\" y=\"30.42\" width=\"7.44\" height=\"65.58\"/>\n <rect class=\"cls-ColumnGrouped-1\" x=\"48\" y=\"8.11\" width=\"7.44\" height=\"87.89\"/>\n <rect class=\"cls-ColumnGrouped-1\" x=\"81.13\" y=\"38.2\" width=\"7.44\" height=\"57.8\"/>\n <rect class=\"cls-ColumnGrouped-2\" x=\"7.44\" y=\"43.61\" width=\"7.44\" height=\"52.39\"/>\n <rect class=\"cls-ColumnGrouped-3\" x=\"22.31\" y=\"52.06\" width=\"7.44\" height=\"43.94\"/>\n <rect class=\"cls-ColumnGrouped-2\" x=\"40.56\" y=\"34.48\" width=\"7.44\" height=\"61.52\"/>\n <rect class=\"cls-ColumnGrouped-3\" x=\"55.44\" y=\"19.27\" width=\"7.44\" height=\"76.73\"/>\n <rect class=\"cls-ColumnGrouped-2\" x=\"73.69\" y=\"12.17\" width=\"7.44\" height=\"83.83\"/>\n <rect class=\"cls-ColumnGrouped-4\" y=\"20.28\" width=\"7.44\" height=\"75.72\"/>\n <rect class=\"cls-ColumnGrouped-4\" x=\"33.13\" y=\"71.32\" width=\"7.44\" height=\"24.68\"/>\n <rect class=\"cls-ColumnGrouped-4\" x=\"66.25\" y=\"51.04\" width=\"7.44\" height=\"44.96\"/>\n <rect class=\"cls-ColumnGrouped-3\" x=\"88.56\" y=\"63.21\" width=\"7.44\" height=\"32.79\"/>\n </g>\n</svg>\n";
|
|
9
|
-
export declare const ColumnStacked = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-ColumnStacked-1{fill:#ab4191;}.cls-ColumnStacked-1,.cls-ColumnStacked-2,.cls-ColumnStacked-3,.cls-ColumnStacked-4{fill-rule:evenodd;}.cls-ColumnStacked-2{fill:#f05951;}.cls-ColumnStacked-3{fill:#fa8d3d;}.cls-ColumnStacked-4{fill:#0f6860;}</style>\n </defs>\n <g id=\"ChartNames\">\n <path class=\"cls-ColumnStacked-1\" d=\"M0,44.4V78.55H13.81V44.4ZM16.44,9.87V78.55H30.25V9.87ZM32.88,25.8V78.55h13.8V25.8Zm16.44,19V82.34h13.8V44.77ZM65.75,0V78.55H79.56V0ZM82.19,37.94V86.13H96V37.94Z\"/>\n <path class=\"cls-ColumnStacked-2\" d=\"M16.44,36.05v42.5H30.25V36.05Zm49.31-.38V78.55H79.56V35.67ZM32.88,52V78.55h13.8V52ZM49.32,57.3v25h13.8v-25Zm32.87-1.14v30H96v-30ZM0,57.68V78.55H13.81V57.68Z\"/>\n <path class=\"cls-ColumnStacked-3\" d=\"M32.88,63.37V78.55h13.8V63.37Zm16.44,2.27v16.7h13.8V65.64Zm32.87,3V86.13H96V68.68ZM16.44,53.5v25H30.25v-25Zm49.31,3v22H79.56v-22ZM0,67.54v14H13.81v-14Z\"/>\n <path class=\"cls-ColumnStacked-4\" d=\"M16.44,71.72V96H30.25V71.72Zm49.31,1.51V96H79.56V73.23ZM32.88,77V96h13.8V77Zm16.44,3.79V96h13.8V80.82Zm32.87,3V96H96V83.86ZM0,81.2V96H13.81V81.2Z\"/>\n </g>\n</svg>\n";
|
|
10
|
-
export declare const Line100Stacked = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-Line100Stacked-1,.cls-Line100Stacked-2,.cls-Line100Stacked-3,.cls-Line100Stacked-4{fill:none;stroke-miterlimit:10;stroke-width:2px;fill-rule:evenodd;}.cls-Line100Stacked-1{stroke:#ab4191;}.cls-Line100Stacked-2{stroke:#f05951;}.cls-Line100Stacked-3{stroke:#fa8d3d;}.cls-Line100Stacked-4{stroke:#0f6860;}</style>\n </defs>\n <g id=\"ChartNames\">\n <polyline class=\"cls-Line100Stacked-1\" points=\"0 29.37 17.34 19.88 38.74 29.52 58.65 32.18 80.42 28.87 96 24.56\"/>\n <polyline class=\"cls-Line100Stacked-2\" points=\"0 42.5 17.34 37.81 38.37 41.12 59.02 42.11 80.42 37.81 96 41.85\"/>\n <polyline class=\"cls-Line100Stacked-3\" points=\"0 66.68 17.34 59.32 38.37 72.9 59.76 55.35 96 65.16\"/>\n <polyline class=\"cls-Line100Stacked-4\" points=\"0 85.81 17.34 78.52 59.39 88.12 80.78 76.87 96 82.48\"/>\n </g>\n</svg>\n";
|
|
11
|
-
export declare const LineGrouped = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-LineGrouped-1,.cls-LineGrouped-2,.cls-LineGrouped-3,.cls-LineGrouped-4{fill:none;stroke-miterlimit:10;stroke-width:2px;}.cls-LineGrouped-1{stroke:#ab4191;}.cls-LineGrouped-2{stroke:#f05951;}.cls-LineGrouped-3{stroke:#fa8d3d;}.cls-LineGrouped-4{stroke:#0f6860;}</style>\n </defs>\n <g id=\"ChartNames\">\n <polyline class=\"cls-LineGrouped-1\" points=\"0 31.14 4.12 20.49 11.66 36.91 16.09 36.66 24.41 46.48 27.96 47.14 32.04 44.59 36.46 46.81 40.19 44.59 45.04 45.82 47.99 49.2 51.98 48.87 59.96 52.84 63.95 51.52 68.28 51.52 74.78 53.74 85.36 41.04 96 17.86 96 18.27\"/>\n <polyline class=\"cls-LineGrouped-2\" points=\"0 61.42 3.9 56.96 7.98 61.25 15.61 60.59 24.28 69.75 27.57 71.15 31.99 67.52 35.81 69.17 40.06 67.19 48.04 70.08 51.76 69.17 59.07 73.36 68.06 72.06 75.87 68.01 79.25 63.06 82.37 59.93 88.01 57.37 91.99 52.01 96 36.5 96 35.45\"/>\n <polyline class=\"cls-LineGrouped-3\" points=\"0 79.47 5.11 77.91 8.5 78.81 16.13 77.41 20.72 80.71 27.4 84.17 37.8 83.52 46.91 85.58 52.02 79.31 60.35 84.59 90.95 89.87 96 85.5\"/>\n <polyline class=\"cls-LineGrouped-4\" points=\"0 92.26 14.7 90.69 19.9 92.1 24.93 90.03 30.13 91.1 47.13 90.78 51.72 89.12 56.75 90.69 71.06 90.11 83.63 83.1 96 79.33\"/>\n </g>\n</svg>\n";
|
|
12
|
-
export declare const LineStacked = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-LineStacked-1,.cls-LineStacked-2,.cls-LineStacked-3,.cls-LineStacked-4{fill:none;stroke-miterlimit:10;stroke-width:2px;fill-rule:evenodd;}.cls-LineStacked-1{stroke:#ab4191;}.cls-LineStacked-2{stroke:#f05951;}.cls-LineStacked-3{stroke:#fa8d3d;}.cls-LineStacked-4{stroke:#0f6860;}</style>\n </defs>\n <g id=\"ChartNames\">\n <polyline class=\"cls-LineStacked-1\" points=\"0 80.39 14.23 67.93 31.11 68.6 47.9 59.83 65.4 39.39 81.92 33.46 96 14.25\"/>\n <polyline class=\"cls-LineStacked-2\" points=\"0 85.07 14.32 75.65 31.47 78.74 48.25 68.72 64.86 68.97 82.1 43.77 96 36.04\"/>\n <polyline class=\"cls-LineStacked-3\" points=\"0 90.45 14.14 83.91 30.93 84.66 48.17 79.07 64.86 78.07 82.28 62.38 96 59.21\"/>\n <polyline class=\"cls-LineStacked-4\" points=\"0 96 31.16 90.78 64.95 88.38 82.19 77.78 96 74.53\"/>\n </g>\n</svg>\n";
|
|
13
|
-
export declare const Pie = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-Pie-1{fill:#f05951;}.cls-Pie-1,.cls-Pie-2,.cls-Pie-3,.cls-Pie-4{fill-rule:evenodd;}.cls-Pie-2{fill:#fa8d3d;}.cls-Pie-3{fill:#0f6860;}.cls-Pie-4{fill:#ab4191;}</style>\n </defs>\n <g id=\"ChartNames\">\n <path class=\"cls-Pie-1\" d=\"M44.19,48V3.79A43.27,43.27,0,0,0,3,32.3,43.45,43.45,0,0,0,15,81Z\"/>\n <path class=\"cls-Pie-2\" d=\"M44.19,48,15,81a42.63,42.63,0,0,0,37.7,10.28,42.72,42.72,0,0,0,31-23.78Z\"/>\n <path class=\"cls-Pie-3\" d=\"M51.77,48,91.29,67.53a42.87,42.87,0,0,0,.53-38Z\"/>\n <path class=\"cls-Pie-4\" d=\"M44.19,48,84.24,29.52a43.13,43.13,0,0,0-40-25.73Z\"/>\n </g>\n</svg>\n";
|
|
14
|
-
export declare const ScatterBubble = "\n <svg id=\"Layer_1\" data-name=\"Layer 1\"\n xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-ScatterBubble-1{fill:#f05951;}.cls-ScatterBubble-1,.cls-ScatterBubble-2{stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:0.5px;}.cls-ScatterBubble-2{fill:#ab4191;}</style>\n </defs>\n <circle class=\"cls-ScatterBubble-1\" cx=\"6.06\" cy=\"85.05\" r=\"2.33\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"16.57\" cy=\"83.89\" r=\"2.33\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"13.07\" cy=\"78.83\" r=\"2.33\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"39.52\" cy=\"59.38\" r=\"2.33\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"35.63\" cy=\"53.94\" r=\"2.33\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"7.62\" cy=\"70.27\" r=\"2.33\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"20.85\" cy=\"71.44\" r=\"2.33\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"8.79\" cy=\"84.28\" r=\"3.11\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"18.9\" cy=\"67.16\" r=\"3.11\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"36.4\" cy=\"59.77\" r=\"3.11\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"63.24\" cy=\"21.26\" r=\"3.11\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"25.12\" cy=\"70.27\" r=\"3.11\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"9.18\" cy=\"71.83\" r=\"3.11\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"13.07\" cy=\"47.32\" r=\"3.11\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"8.01\" cy=\"60.94\" r=\"4.28\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"22.4\" cy=\"74.94\" r=\"4.28\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"29.79\" cy=\"54.33\" r=\"4.28\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"73.75\" cy=\"30.99\" r=\"4.28\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"62.47\" cy=\"34.88\" r=\"4.28\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"16.57\" cy=\"48.88\" r=\"4.28\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"44.18\" cy=\"28.26\" r=\"4.28\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"16.57\" cy=\"61.33\" r=\"4.28\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"29.79\" cy=\"49.66\" r=\"5.06\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"47.68\" cy=\"53.94\" r=\"5.83\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"62.08\" cy=\"26.32\" r=\"5.06\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"86.58\" cy=\"39.93\" r=\"5.06\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"70.63\" cy=\"33.32\" r=\"5.06\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"64.8\" cy=\"33.32\" r=\"6.22\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"25.9\" cy=\"32.15\" r=\"6.22\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"39.52\" cy=\"74.16\" r=\"6.61\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"56.23\" cy=\"81.54\" r=\"6.22\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"51.19\" cy=\"74.16\" r=\"8.17\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"42.24\" cy=\"38.77\" r=\"8.17\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"50.8\" cy=\"60.94\" r=\"8.17\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"41.85\" cy=\"34.88\" r=\"9.34\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"52.35\" cy=\"31.76\" r=\"11.28\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"58.97\" cy=\"53.55\" r=\"12.84\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"37.57\" cy=\"81.55\" r=\"9.72\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"58.58\" cy=\"50.44\" r=\"6.22\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"51.57\" cy=\"53.55\" r=\"7\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"53.52\" cy=\"34.49\" r=\"7\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"57.41\" cy=\"11.93\" r=\"7\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"86.19\" cy=\"57.83\" r=\"5.45\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"20.85\" cy=\"66.38\" r=\"5.45\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"38.35\" cy=\"58.6\" r=\"5.06\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"15.79\" cy=\"64.05\" r=\"5.06\"/>\n <circle class=\"cls-ScatterBubble-1\" cx=\"28.24\" cy=\"74.55\" r=\"5.06\"/>\n <circle class=\"cls-ScatterBubble-2\" cx=\"57.02\" cy=\"22.04\" r=\"4.28\"/>\n</svg>\n";
|
|
15
|
-
export declare const ScatterLine = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-ScatterLine-1,.cls-ScatterLine-2,.cls-ScatterLine-3,.cls-ScatterLine-4{fill:none;stroke-miterlimit:10;stroke-width:2px;}.cls-ScatterLine-1{stroke:#0f6860;}.cls-ScatterLine-1,.cls-ScatterLine-2,.cls-ScatterLine-3,.cls-ScatterLine-4,.cls-ScatterLine-5,.cls-ScatterLine-7,.cls-ScatterLine-8,.cls-ScatterLine-9{fill-rule:evenodd;}.cls-ScatterLine-2{stroke:#fa8d3d;}.cls-ScatterLine-3{stroke:#f05951;}.cls-ScatterLine-4{stroke:#ab4191;}.cls-ScatterLine-5{fill:#ab4191;}.cls-ScatterLine-6{fill:#fff;}.cls-ScatterLine-7{fill:#f05951;}.cls-ScatterLine-8{fill:#0f6860;}.cls-ScatterLine-9{fill:#fa8d3d;}</style>\n </defs>\n <g id=\"ChartNames\">\n <polyline class=\"cls-ScatterLine-1\" points=\"26.86 87.32 37.71 81.09 60.66 85.34 75.57 71.13 82.69 60.02 88.09 48.86\"/>\n <polyline class=\"cls-ScatterLine-2\" points=\"10.6 85.36 16.86 76.38 32.22 58.89 55.26 41.45 60.02 31.09 69.79 23.41 88.32 6.3\"/>\n <polyline class=\"cls-ScatterLine-3\" points=\"60.19 7.22 47.42 10.06 35.31 14.73 18.95 32.1 17.53 50.04 10.44 58.56\"/>\n <polyline class=\"cls-ScatterLine-4\" points=\"23.58 4.76 10.97 12.44 8.47 29.72\"/>\n <path class=\"cls-ScatterLine-5\" d=\"M8.69,12.61a2.51,2.51,0,1,0,2.5-2.51A2.5,2.5,0,0,0,8.69,12.61Zm1,0a1.5,1.5,0,1,1,1.5,1.5A1.5,1.5,0,0,1,9.69,12.61Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"11.19\" cy=\"12.61\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-5\" d=\"M21,4.59a2.51,2.51,0,1,0,2.51-2.5A2.51,2.51,0,0,0,21,4.59Zm1,0A1.51,1.51,0,1,1,23.55,6.1,1.5,1.5,0,0,1,22,4.59Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"23.55\" cy=\"4.59\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-5\" d=\"M6,29.64a2.5,2.5,0,1,0,2.5-2.51A2.5,2.5,0,0,0,6,29.64Zm1,0a1.5,1.5,0,1,1,1.5,1.5A1.5,1.5,0,0,1,7,29.64Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"8.52\" cy=\"29.64\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-7\" d=\"M57.43,7.26a2.51,2.51,0,1,0,2.51-2.5A2.51,2.51,0,0,0,57.43,7.26Zm1,0a1.51,1.51,0,1,1,1.51,1.51A1.51,1.51,0,0,1,58.43,7.26Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"59.94\" cy=\"7.26\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-7\" d=\"M44.74,10.24a2.51,2.51,0,1,0,2.51-2.51A2.51,2.51,0,0,0,44.74,10.24Zm1,0a1.5,1.5,0,1,1,1.5,1.5A1.5,1.5,0,0,1,45.75,10.24Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"47.25\" cy=\"10.24\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-7\" d=\"M33.06,14.94a2.51,2.51,0,1,0,2.5-2.5A2.5,2.5,0,0,0,33.06,14.94Zm1,0a1.5,1.5,0,1,1,1.5,1.51A1.5,1.5,0,0,1,34.06,14.94Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"35.56\" cy=\"14.94\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-7\" d=\"M16.36,32.08a2.51,2.51,0,1,0,2.51-2.5A2.51,2.51,0,0,0,16.36,32.08Zm1,0a1.51,1.51,0,1,1,1.51,1.5A1.5,1.5,0,0,1,17.36,32.08Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"18.87\" cy=\"32.08\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-7\" d=\"M14.69,50.34a2.51,2.51,0,1,0,2.51-2.51A2.5,2.5,0,0,0,14.69,50.34Zm1,0a1.51,1.51,0,1,1,3,0,1.51,1.51,0,0,1-3,0Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"17.2\" cy=\"50.34\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-7\" d=\"M8,58.24a2.51,2.51,0,1,0,2.5-2.51A2.5,2.5,0,0,0,8,58.24Zm1,0a1.5,1.5,0,1,1,1.5,1.5A1.5,1.5,0,0,1,9,58.24Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"10.48\" cy=\"58.24\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-8\" d=\"M80.54,60a2.5,2.5,0,1,0,2.5-2.5A2.51,2.51,0,0,0,80.54,60Zm1,0a1.5,1.5,0,1,1,1.5,1.5A1.5,1.5,0,0,1,81.54,60Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"83.04\" cy=\"60.02\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-8\" d=\"M85.58,49a2.51,2.51,0,1,0,2.51-2.5A2.51,2.51,0,0,0,85.58,49Zm1,0a1.51,1.51,0,1,1,1.51,1.5A1.51,1.51,0,0,1,86.58,49Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"88.09\" cy=\"49\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-8\" d=\"M73.27,71.18a2.51,2.51,0,1,0,2.5-2.5A2.51,2.51,0,0,0,73.27,71.18Zm1,0a1.5,1.5,0,1,1,1.5,1.51A1.5,1.5,0,0,1,74.27,71.18Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"75.77\" cy=\"71.18\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-8\" d=\"M58.16,85.65a2.5,2.5,0,1,0,2.5-2.51A2.5,2.5,0,0,0,58.16,85.65Zm1,0a1.5,1.5,0,1,1,1.5,1.5A1.51,1.51,0,0,1,59.16,85.65Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"60.66\" cy=\"85.65\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-8\" d=\"M35.2,81.53A2.51,2.51,0,1,0,37.71,79,2.52,2.52,0,0,0,35.2,81.53Zm1,0A1.51,1.51,0,1,1,37.71,83,1.51,1.51,0,0,1,36.2,81.53Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"37.71\" cy=\"81.53\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-8\" d=\"M24.35,87.32a2.51,2.51,0,1,0,2.51-2.51A2.5,2.5,0,0,0,24.35,87.32Zm1,0a1.51,1.51,0,1,1,1.51,1.5A1.51,1.51,0,0,1,25.35,87.32Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"26.86\" cy=\"87.32\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-9\" d=\"M8,85.73a2.51,2.51,0,1,0,2.51-2.5A2.52,2.52,0,0,0,8,85.73Zm1,0a1.5,1.5,0,1,1,1.5,1.5A1.5,1.5,0,0,1,9,85.73Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"10.48\" cy=\"85.73\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-9\" d=\"M13.36,77.38a2.51,2.51,0,1,0,2.5-2.5A2.5,2.5,0,0,0,13.36,77.38Zm1,0a1.51,1.51,0,1,1,1.5,1.51A1.5,1.5,0,0,1,14.36,77.38Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"15.86\" cy=\"77.38\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-9\" d=\"M19,70.71a2.51,2.51,0,1,0,2.51-2.51A2.5,2.5,0,0,0,19,70.71Zm1,0a1.51,1.51,0,1,1,1.51,1.5A1.51,1.51,0,0,1,20,70.71Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"21.54\" cy=\"70.71\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-9\" d=\"M29.44,58.91a2.51,2.51,0,1,0,2.5-2.51A2.5,2.5,0,0,0,29.44,58.91Zm1,0a1.5,1.5,0,1,1,1.5,1.5A1.51,1.51,0,0,1,30.44,58.91Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"31.94\" cy=\"58.91\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-9\" d=\"M41.41,49.67a2.5,2.5,0,1,0,2.5-2.5A2.5,2.5,0,0,0,41.41,49.67Zm1,0a1.5,1.5,0,1,1,1.5,1.5A1.5,1.5,0,0,1,42.41,49.67Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"43.91\" cy=\"49.67\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-9\" d=\"M52.76,41.66a2.51,2.51,0,1,0,2.5-2.51A2.5,2.5,0,0,0,52.76,41.66Zm1,0a1.51,1.51,0,1,1,1.5,1.5A1.5,1.5,0,0,1,53.76,41.66Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"55.26\" cy=\"41.66\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-9\" d=\"M57.77,31.3a2.51,2.51,0,1,0,2.5-2.5A2.5,2.5,0,0,0,57.77,31.3Zm1,0a1.5,1.5,0,1,1,1.5,1.51A1.5,1.5,0,0,1,58.77,31.3Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"60.27\" cy=\"31.3\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-9\" d=\"M67.45,23.62a2.51,2.51,0,1,0,2.5-2.5A2.5,2.5,0,0,0,67.45,23.62Zm1,0A1.51,1.51,0,1,1,70,25.13,1.5,1.5,0,0,1,68.45,23.62Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"69.95\" cy=\"23.62\" r=\"1.5\"/>\n <path class=\"cls-ScatterLine-9\" d=\"M85.82,6.59a2.5,2.5,0,1,0,2.5-2.5A2.5,2.5,0,0,0,85.82,6.59Zm1,0a1.5,1.5,0,1,1,1.5,1.51A1.5,1.5,0,0,1,86.82,6.59Z\"/>\n <circle class=\"cls-ScatterLine-6\" cx=\"88.32\" cy=\"6.59\" r=\"1.5\"/>\n </g>\n</svg>\n";
|
|
16
|
-
export declare const ScatterPoint = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 96 96\">\n <defs>\n <style>.cls-ScatterPoint-1{fill:#ab4191;}.cls-ScatterPoint-1,.cls-ScatterPoint-3,.cls-ScatterPoint-4{fill-rule:evenodd;}.cls-ScatterPoint-2{fill:#fff;}.cls-ScatterPoint-3{fill:#f05951;}.cls-ScatterPoint-4{fill:#fa8d3d;}</style>\n </defs>\n <g id=\"ChartNames\">\n <path class=\"cls-ScatterPoint-1\" d=\"M6.42,7.64A2.37,2.37,0,1,0,8.79,5.28,2.37,2.37,0,0,0,6.42,7.64Zm1,0A1.42,1.42,0,1,1,8.79,9.06,1.41,1.41,0,0,1,7.37,7.64Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"8.79\" cy=\"7.64\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M12.09,10a2.37,2.37,0,1,0,2.37-2.37A2.37,2.37,0,0,0,12.09,10ZM13,10a1.42,1.42,0,1,1,1.42,1.41A1.41,1.41,0,0,1,13,10Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"14.46\" cy=\"10.01\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M22,8.59a2.37,2.37,0,1,0,2.37-2.36A2.37,2.37,0,0,0,22,8.59Zm.95,0A1.42,1.42,0,1,1,24.38,10,1.41,1.41,0,0,1,23,8.59Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"24.38\" cy=\"8.59\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M14.46,14.73a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,14.46,14.73Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.42,1.42,0,0,1,15.4,14.73Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"16.82\" cy=\"14.73\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M11.62,31.27A2.37,2.37,0,1,0,14,28.9,2.36,2.36,0,0,0,11.62,31.27Zm1,0A1.42,1.42,0,1,1,14,32.68,1.41,1.41,0,0,1,12.57,31.27Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"13.98\" cy=\"31.27\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M3.12,28.9a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,3.12,28.9Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.41,1.41,0,0,1,4.06,28.9Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"5.48\" cy=\"28.9\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M2.64,34.57A2.37,2.37,0,1,0,5,32.21,2.37,2.37,0,0,0,2.64,34.57Zm.95,0A1.42,1.42,0,1,1,5,36,1.41,1.41,0,0,1,3.59,34.57Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"5.01\" cy=\"34.57\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M.75,37.88a2.37,2.37,0,1,0,2.37-2.36A2.36,2.36,0,0,0,.75,37.88Zm1,0A1.42,1.42,0,1,1,3.12,39.3,1.42,1.42,0,0,1,1.7,37.88Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"3.12\" cy=\"37.88\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M1.23,44.5a2.36,2.36,0,1,0,2.36-2.37A2.36,2.36,0,0,0,1.23,44.5Zm.94,0a1.42,1.42,0,1,1,1.42,1.41A1.41,1.41,0,0,1,2.17,44.5Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"3.59\" cy=\"44.5\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M2.64,66.23A2.37,2.37,0,1,0,5,63.87,2.37,2.37,0,0,0,2.64,66.23Zm.95,0A1.42,1.42,0,1,1,5,67.65,1.41,1.41,0,0,1,3.59,66.23Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"5.01\" cy=\"66.23\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M26.27,75.21a2.36,2.36,0,1,0,2.36-2.37A2.36,2.36,0,0,0,26.27,75.21Zm.94,0a1.42,1.42,0,1,1,1.42,1.41A1.41,1.41,0,0,1,27.21,75.21Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"28.63\" cy=\"75.21\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M9.73,52.06a2.37,2.37,0,1,0,2.36-2.37A2.36,2.36,0,0,0,9.73,52.06Zm.95,0a1.42,1.42,0,1,1,1.41,1.41A1.41,1.41,0,0,1,10.68,52.06Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"12.09\" cy=\"52.06\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M14.46,48.75a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,14.46,48.75Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.41,1.41,0,0,1,15.4,48.75Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"16.82\" cy=\"48.75\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M14.46,41.66a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,14.46,41.66Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.42,1.42,0,0,1,15.4,41.66Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"16.82\" cy=\"41.66\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M22.49,44.5a2.36,2.36,0,1,0,2.36-2.37A2.36,2.36,0,0,0,22.49,44.5Zm.94,0a1.42,1.42,0,1,1,1.42,1.41A1.42,1.42,0,0,1,23.43,44.5Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"24.85\" cy=\"44.5\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-1\" d=\"M30.52,44a2.36,2.36,0,1,0,2.36-2.36A2.37,2.37,0,0,0,30.52,44Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.42,1.42,0,0,1,31.46,44Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"32.88\" cy=\"44.02\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M19.18,87.88a2.36,2.36,0,1,0,2.36-2.36A2.37,2.37,0,0,0,19.18,87.88Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.42,1.42,0,0,1,20.12,87.88Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"21.54\" cy=\"87.88\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M30.52,67.65a2.36,2.36,0,1,0,2.36-2.37A2.36,2.36,0,0,0,30.52,67.65Zm.94,0a1.42,1.42,0,1,1,1.42,1.41A1.42,1.42,0,0,1,31.46,67.65Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"32.88\" cy=\"67.65\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M41.86,51.58a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,41.86,51.58Zm.94,0A1.42,1.42,0,1,1,44.22,53,1.42,1.42,0,0,1,42.8,51.58Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"44.22\" cy=\"51.58\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M41.86,53.94a2.36,2.36,0,1,0,2.36-2.36A2.37,2.37,0,0,0,41.86,53.94Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.42,1.42,0,0,1,42.8,53.94Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"44.22\" cy=\"53.94\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M41.86,63.39A2.36,2.36,0,1,0,44.22,61,2.37,2.37,0,0,0,41.86,63.39Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.42,1.42,0,0,1,42.8,63.39Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"44.22\" cy=\"63.39\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M41.86,71.43a2.36,2.36,0,1,0,2.36-2.37A2.36,2.36,0,0,0,41.86,71.43Zm.94,0a1.42,1.42,0,1,1,1.42,1.41A1.42,1.42,0,0,1,42.8,71.43Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"44.22\" cy=\"71.43\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M53.2,83.24a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,53.2,83.24Zm.94,0a1.42,1.42,0,1,1,1.42,1.41A1.42,1.42,0,0,1,54.14,83.24Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"55.56\" cy=\"83.24\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M64.06,75.21a2.37,2.37,0,1,0,2.37-2.37A2.37,2.37,0,0,0,64.06,75.21Zm1,0a1.42,1.42,0,1,1,1.42,1.41A1.41,1.41,0,0,1,65,75.21Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"66.43\" cy=\"75.21\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M64.06,63.39A2.37,2.37,0,1,0,66.43,61,2.37,2.37,0,0,0,64.06,63.39Zm1,0a1.42,1.42,0,1,1,1.42,1.42A1.41,1.41,0,0,1,65,63.39Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"66.43\" cy=\"63.39\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M75.4,71.43a2.37,2.37,0,1,0,2.36-2.37A2.36,2.36,0,0,0,75.4,71.43Zm.95,0a1.42,1.42,0,1,1,1.41,1.41A1.41,1.41,0,0,1,76.35,71.43Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"77.76\" cy=\"71.43\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M75.4,55.83a2.37,2.37,0,1,0,2.36-2.36A2.37,2.37,0,0,0,75.4,55.83Zm.95,0a1.42,1.42,0,1,1,1.41,1.42A1.41,1.41,0,0,1,76.35,55.83Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"77.76\" cy=\"55.83\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M75.4,24.81a2.37,2.37,0,1,0,2.36-2.36A2.36,2.36,0,0,0,75.4,24.81Zm.95,0a1.42,1.42,0,1,1,1.41,1.42A1.41,1.41,0,0,1,76.35,24.81Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"77.76\" cy=\"24.81\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M75.4,22a2.37,2.37,0,1,0,2.36-2.36A2.37,2.37,0,0,0,75.4,22Zm.95,0a1.42,1.42,0,1,1,1.41,1.42A1.41,1.41,0,0,1,76.35,22Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"77.76\" cy=\"21.97\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M86.74,84.1a2.37,2.37,0,1,0,2.36-2.36A2.37,2.37,0,0,0,86.74,84.1Zm1,0a1.42,1.42,0,1,1,1.41,1.42A1.41,1.41,0,0,1,87.69,84.1Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"89.1\" cy=\"84.1\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M86.74,71a2.37,2.37,0,1,0,2.36-2.36A2.37,2.37,0,0,0,86.74,71Zm1,0a1.42,1.42,0,1,1,1.41,1.42A1.41,1.41,0,0,1,87.69,71Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"89.1\" cy=\"70.95\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M41.86,88.36A2.36,2.36,0,1,0,44.22,86,2.36,2.36,0,0,0,41.86,88.36Zm.94,0a1.42,1.42,0,1,1,1.42,1.41A1.42,1.42,0,0,1,42.8,88.36Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"44.22\" cy=\"88.36\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-3\" d=\"M30.52,71.43a2.36,2.36,0,1,0,2.36-2.37A2.36,2.36,0,0,0,30.52,71.43Zm.94,0a1.42,1.42,0,1,1,1.42,1.41A1.42,1.42,0,0,1,31.46,71.43Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"32.88\" cy=\"71.43\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M19.65,64.34A2.37,2.37,0,1,0,22,62,2.36,2.36,0,0,0,19.65,64.34Zm1,0A1.42,1.42,0,1,1,22,65.76,1.41,1.41,0,0,1,20.6,64.34Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"22.01\" cy=\"64.34\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M30.52,50.64a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,30.52,50.64Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.42,1.42,0,0,1,31.46,50.64Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"32.88\" cy=\"50.64\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M30.52,62.92a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,30.52,62.92Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.43,1.43,0,0,1,31.46,62.92Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"32.88\" cy=\"62.92\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M30.52,79a2.36,2.36,0,1,0,2.36-2.37A2.36,2.36,0,0,0,30.52,79Zm.94,0a1.42,1.42,0,1,1,1.42,1.41A1.42,1.42,0,0,1,31.46,79Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"32.88\" cy=\"78.99\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M41.86,68.12a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,41.86,68.12Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.42,1.42,0,0,1,42.8,68.12Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"44.22\" cy=\"68.12\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M53.2,56.78a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,53.2,56.78Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.43,1.43,0,0,1,54.14,56.78Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"55.56\" cy=\"56.78\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M53.2,76.15a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,53.2,76.15Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.43,1.43,0,0,1,54.14,76.15Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"55.56\" cy=\"76.15\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M41.86,85.52a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,41.86,85.52Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.43,1.43,0,0,1,42.8,85.52Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"44.22\" cy=\"85.52\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M64.06,83.24a2.37,2.37,0,1,0,2.37-2.36A2.37,2.37,0,0,0,64.06,83.24Zm1,0a1.42,1.42,0,1,1,1.42,1.41A1.41,1.41,0,0,1,65,83.24Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"66.43\" cy=\"83.24\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M75.4,75.68a2.37,2.37,0,1,0,2.36-2.36A2.36,2.36,0,0,0,75.4,75.68Zm.95,0a1.42,1.42,0,1,1,1.41,1.42A1.41,1.41,0,0,1,76.35,75.68Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"77.76\" cy=\"75.68\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M77.76,75.21a2.37,2.37,0,1,0,2.37-2.37A2.37,2.37,0,0,0,77.76,75.21Zm.95,0a1.42,1.42,0,1,1,1.42,1.41A1.41,1.41,0,0,1,78.71,75.21Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"80.13\" cy=\"75.21\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M86.27,54.89a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,86.27,54.89Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.43,1.43,0,0,1,87.21,54.89Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"88.63\" cy=\"54.89\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M90.52,71a2.37,2.37,0,1,0,2.36-2.36A2.37,2.37,0,0,0,90.52,71Zm1,0a1.42,1.42,0,1,1,1.41,1.42A1.41,1.41,0,0,1,91.47,71Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"92.88\" cy=\"70.95\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M86.74,88.36A2.37,2.37,0,1,0,89.1,86,2.36,2.36,0,0,0,86.74,88.36Zm1,0a1.42,1.42,0,1,1,1.41,1.41A1.41,1.41,0,0,1,87.69,88.36Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"89.1\" cy=\"88.36\" r=\"1.42\"/>\n <path class=\"cls-ScatterPoint-4\" d=\"M30.52,83.71a2.36,2.36,0,1,0,2.36-2.36A2.36,2.36,0,0,0,30.52,83.71Zm.94,0a1.42,1.42,0,1,1,1.42,1.42A1.43,1.43,0,0,1,31.46,83.71Z\"/>\n <circle class=\"cls-ScatterPoint-2\" cx=\"32.88\" cy=\"83.71\" r=\"1.42\"/>\n </g>\n</svg>\n";
|
package/images/conditions.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export declare const Clear = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <defs>\n <style>.cls-Clear-1{fill-rule:evenodd;}.cls-Clear-2{fill:none;}</style>\n </defs>\n <g id=\"Layer_2\" data-name=\"Layer 2\">\n <g id=\"Layer_1-2\" data-name=\"Layer 1\">\n <g id=\"Conditional-formating\">\n <g id=\"Artboard\">\n <g id=\"refresh-24px\">\n <path id=\"Path\" class=\"cls-Clear-1\" d=\"M17.65,6.35A8,8,0,1,0,19.73,14H17.65A6,6,0,1,1,12,6a5.91,5.91,0,0,1,4.22,1.78L13,11h7V4Z\"/>\n <polygon class=\"cls-Clear-2\" points=\"0 0 24 0 24 24 0 24 0 0\"/>\n </g>\n </g>\n </g>\n </g>\n </g>\n</svg>\n";
|
|
2
|
-
export declare const ColorScale = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M13 13.65h5a5.63 5.63 0 00-.09-1H13zM13 10.65h4.19a6.29 6.29 0 00-.74-1H13zM13 19.58a5.87 5.87 0 002.34-.93H13zM13 6.18v1.48h1.48l-1-1-.48-.48zM13 15.65v1h4.2a5.68 5.68 0 00.46-1zM11 6.18L7.76 9.43A6 6 0 0011 19.58z\" fill=\"none\"/>\n <path d=\"M16.45 9.65H13v1h4.19a6.29 6.29 0 00-.74-1zM13.48 6.66L13 6.18v1.48h1.48l-1-1zM6 13.66a6 6 0 005 5.92V6.18L7.76 9.42A6 6 0 006 13.66zM13 19.58a5.87 5.87 0 002.34-.93H13zM13 16.65h4.2a5.68 5.68 0 00.46-1H13zM13 12.65v1h5a5.63 5.63 0 00-.09-1z\" fill=\"none\"/>\n <path d=\"M19.93 12.66a7.84 7.84 0 00-.51-2 8.48 8.48 0 00-.5-1A7.8 7.8 0 0017.66 8l-.35-.36-.31-.26-.73-.73-2-2-.85-.84L12 2.34 6.34 8A8 8 0 0011 21.58h.21a7 7 0 00.79 0 7.14 7.14 0 00.8 0h.2a7.94 7.94 0 006.93-8.92zM11 19.58A6 6 0 017.76 9.42L11 6.18zm2-12.93v-.47l.48.47 1 1H13zm0 3h3.45a6.29 6.29 0 01.74 1H13zm0 9.93v-.93h2.34a5.87 5.87 0 01-2.34.93zm4.2-2.93H13v-1h4.66a5.68 5.68 0 01-.46 1zm-4.2-3v-1h4.91a5.63 5.63 0 01.09 1z\"/>\n <path d=\"M0 0h24v24H0z\" fill=\"none\"/>\n</svg>\n\n";
|
|
3
|
-
export declare const DataBars = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M3 7h12v2H3zM3 15h12v2H3zM3 19h18v2H3zM3 11h18v2H3zM3 3h18v2H3z\"/>\n <path d=\"M0 0h24v24H0z\" fill=\"none\"/>\n</svg>\n\n";
|
|
4
|
-
export declare const DuplicateValues = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M4.94 10.56a1 1 0 00-.38.79.79.79 0 00.25.63 1.06 1.06 0 00.74.24 1.9 1.9 0 001.06-.3 1.48 1.48 0 00.63-.67v-1H6a1.58 1.58 0 00-1.06.31zM16.94 14.69a1 1 0 00-.38.79.82.82 0 00.25.63 1.11 1.11 0 00.74.23 2 2 0 001.06-.29 1.5 1.5 0 00.63-.68v-1H18a1.54 1.54 0 00-1.06.32z\" fill=\"none\"/>\n <path d=\"M4.94 10.56a1 1 0 00-.38.79.79.79 0 00.25.63 1.06 1.06 0 00.74.24 1.9 1.9 0 001.06-.3 1.48 1.48 0 00.63-.67v-1H6a1.58 1.58 0 00-1.06.31zM16.94 14.69a1 1 0 00-.38.79.82.82 0 00.25.63 1.11 1.11 0 00.74.23 2 2 0 001.06-.29 1.5 1.5 0 00.63-.68v-1H18a1.54 1.54 0 00-1.06.32z\" fill=\"none\"/>\n <path d=\"M20.76 15.87v-3.06a2.17 2.17 0 00-.76-1.76 3 3 0 00-1.94-.61 3.06 3.06 0 00-2 .63 1.7 1.7 0 00-.73 1.45h1.49a.83.83 0 01.31-.66 1.29 1.29 0 01.84-.25 1.26 1.26 0 01.91.3 1.09 1.09 0 01.32.85v.6H18a3.81 3.81 0 00-2.22.56 1.78 1.78 0 00-.78 1.59 2 2 0 00.58 1.49 2.31 2.31 0 001.65.55 2.12 2.12 0 001.16-.33 2.79 2.79 0 00.83-.81 4.33 4.33 0 00.08.5c0 .16.08.33.13.51H21a4.29 4.29 0 01-.18-.77 5.46 5.46 0 01-.06-.78zm-1.52-.5a1.5 1.5 0 01-.63.68 2 2 0 01-1.06.29 1.11 1.11 0 01-.74-.23.82.82 0 01-.25-.63 1 1 0 01.38-.79 1.54 1.54 0 011.06-.34h1.24zM8.76 11.75V8.69A2.16 2.16 0 008 6.93a2.93 2.93 0 00-1.94-.61 3.06 3.06 0 00-2 .63 1.69 1.69 0 00-.73 1.44h1.5a.83.83 0 01.31-.65A1.3 1.3 0 016 7.52a1.23 1.23 0 01.91.31 1.07 1.07 0 01.32.84v.61H6a3.74 3.74 0 00-2.22.56A1.78 1.78 0 003 11.39a2 2 0 00.58 1.52 2.27 2.27 0 001.65.56 2.12 2.12 0 001.16-.33 2.79 2.79 0 00.83-.81 4.17 4.17 0 00.08.49 4.77 4.77 0 00.13.51H9a4 4 0 01-.18-.76 5.55 5.55 0 01-.06-.82zm-1.52-.5a1.48 1.48 0 01-.63.67 1.9 1.9 0 01-1.06.3 1.06 1.06 0 01-.74-.22.79.79 0 01-.25-.63 1 1 0 01.38-.79A1.58 1.58 0 016 10.23h1.24zM7 19h2v2H7zM7 15h2v2H7zM3 15h2v2H3zM15 7h2v2h-2zM15 3h2v2h-2zM3 19h2v2H3zM19 19h2v2h-2zM19 7h2v2h-2zM15 19h2v2h-2zM19 3h2v2h-2zM11 11h2v2h-2zM11 19h2v2h-2zM11 15h2v2h-2zM11 7h2v2h-2zM11 3h2v2h-2zM7 3h2v2H7zM3 3h2v2H3z\"/>\n <path d=\"M0 0h24v24H0z\" fill=\"none\"/>\n</svg>\n\n";
|
|
5
|
-
export declare const Empty = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M0 0h24v24H0z\" fill=\"none\"/>\n <path d=\"M5 17h2v2H5zM13 17h2v2h-2zM5 13h2v2H5zM17 17h2v2h-2zM13 5h2v2h-2zM9 17h2v2H9zM17 9h2v2h-2zM17 13h2v2h-2zM17 5h2v2h-2zM5 9h2v2H5zM5 5h2v2H5zM9 5h2v2H9z\"/>\n <path d=\"M0 0h24v24H0z\" fill=\"none\"/>\n</svg>\n\n";
|
|
6
|
-
export declare const Equal = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M5 13.5h14v2H5zM5 8.5h14v2H5z\"/>\n</svg>\n\n";
|
|
7
|
-
export declare const GreaterThan = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M6 7.11L15.09 12 6 16.89V19l12-6.46v-1.08L6 5v2.11z\"/>\n</svg>\n\n";
|
|
8
|
-
export declare const TextContains = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M10.79 12.77a1.16 1.16 0 00-.44.9.92.92 0 00.3.72 1.18 1.18 0 00.84.27 2.27 2.27 0 001.21-.34 1.61 1.61 0 00.71-.77v-1.17H12a1.76 1.76 0 00-1.21.39z\" fill=\"none\"/>\n <path d=\"M5 19h14V5H5zm8-9.36a1.45 1.45 0 00-1-.35 1.5 1.5 0 00-1 .29.93.93 0 00-.35.75H9a1.93 1.93 0 01.83-1.65 3.54 3.54 0 012.3-.72 3.34 3.34 0 012.22.7 2.44 2.44 0 01.84 2v3.5a5.57 5.57 0 00.07.93 4.51 4.51 0 00.21.88h-1.83c-.06-.2-.12-.39-.16-.58a3.72 3.72 0 01-.08-.57 3.05 3.05 0 01-1 .93 2.39 2.39 0 01-1.32.37 2.63 2.63 0 01-1.89-.63 2.29 2.29 0 01-.66-1.74 2.07 2.07 0 01.9-1.78A4.39 4.39 0 0112 11.3h1.38v-.69a1.3 1.3 0 00-.38-.97z\" fill=\"none\"/>\n <path d=\"M3 3v18h18V3zm16 16H5V5h14z\"/>\n <path d=\"M12 11.3a4.39 4.39 0 00-2.54.63 2.07 2.07 0 00-.9 1.78 2.29 2.29 0 00.66 1.74 2.63 2.63 0 001.89.63 2.39 2.39 0 001.32-.37 3.05 3.05 0 001-.93 3.72 3.72 0 00.08.57c0 .19.1.38.16.58h1.79a4.51 4.51 0 01-.21-.88 5.57 5.57 0 01-.07-.93v-3.5a2.44 2.44 0 00-.84-2 3.34 3.34 0 00-2.22-.7 3.54 3.54 0 00-2.3.72A1.93 1.93 0 009 10.29h1.71a.93.93 0 01.29-.71 1.5 1.5 0 011-.29 1.45 1.45 0 011 .35 1.3 1.3 0 01.37 1v.69zm1.4 1.08v1.17a1.61 1.61 0 01-.71.77 2.27 2.27 0 01-1.21.34 1.18 1.18 0 01-.84-.27.92.92 0 01-.3-.72 1.16 1.16 0 01.44-.9 1.76 1.76 0 011.22-.39z\"/>\n <path d=\"M0 0h24v24H0z\" fill=\"none\"/>\n</svg>\n\n";
|
|
9
|
-
export declare const Top10 = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M17.34 7.14a.5.5 0 00-.13.33v.33a.48.48 0 00.13.33.41.41 0 00.31.14.37.37 0 00.42-.37v-.41a.49.49 0 00-.07-.34.45.45 0 00-.62 0zM10.84 8a.54.54 0 00.51-.3 2.05 2.05 0 00.17-.92V5.3a2 2 0 00-.17-.94.6.6 0 00-1 0 2.13 2.13 0 00-.17.88V6.7a2.14 2.14 0 00.17 1 .55.55 0 00.49.3zM14.88 5c.28 0 .42-.18.42-.53v-.26a.53.53 0 00-.11-.34.4.4 0 00-.32-.14.42.42 0 00-.31.13.52.52 0 00-.12.36v.29a.49.49 0 00.12.34.39.39 0 00.32.15z\" fill=\"none\"/>\n <path d=\"M9 18h2v3h2v-3h2l-3-3-3 3zM4 11h16v2H4zM6.38 8.92h1.36V3.08h-.12l-2.57.89V5l1.33-.39v4.31zM10.84 9a1.85 1.85 0 001.5-.64 2.82 2.82 0 00.53-1.82V5.47a2.76 2.76 0 00-.54-1.82 1.83 1.83 0 00-1.5-.65 1.83 1.83 0 00-1.5.65 2.78 2.78 0 00-.53 1.82v1.07a2.79 2.79 0 00.53 1.81 1.86 1.86 0 001.51.65zm-.69-3.79a2.13 2.13 0 01.17-.88.6.6 0 011 0 2 2 0 01.17.94v1.47a2.05 2.05 0 01-.17.92.59.59 0 01-1 0 2.14 2.14 0 01-.17-1zM14.88 5.71a1.31 1.31 0 00.94-.33 1.11 1.11 0 00.35-.86v-.29a1.19 1.19 0 00-.35-.9 1.32 1.32 0 00-1-.33 1.34 1.34 0 00-.95.33 1.17 1.17 0 00-.35.88v.28a1.16 1.16 0 00.36.9 1.4 1.4 0 001 .32zm-.44-1.49a.52.52 0 01.12-.36.42.42 0 01.31-.13.4.4 0 01.32.14.53.53 0 01.11.34v.24c0 .35-.14.53-.42.53a.39.39 0 01-.32-.13.49.49 0 01-.12-.34zM15.13 8.48l2.85-4.56-.62-.32-2.85 4.57.62.31zM16.7 6.62a1.1 1.1 0 00-.35.87v.29a1.12 1.12 0 00.35.89 1.36 1.36 0 00.95.33 1.32 1.32 0 001-.33A1.15 1.15 0 0019 7.8v-.28a1.17 1.17 0 00-.36-.91 1.54 1.54 0 00-1.89 0zm1.38.87v.41a.37.37 0 01-.42.37.41.41 0 01-.31-.14.48.48 0 01-.13-.33v-.33a.5.5 0 01.13-.33.45.45 0 01.62 0 .49.49 0 01.11.35z\"/>\n <path d=\"M0 0h24v24H0z\" fill=\"none\"/>\n</svg>\n\n";
|
|
10
|
-
export declare const UniqueValues = "\n <svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\">\n <path d=\"M0 0h24v24H0z\" fill=\"none\"/>\n <path d=\"M8.94 10.56a1 1 0 00-.38.79.79.79 0 00.25.63 1.06 1.06 0 00.74.24 1.9 1.9 0 001.06-.3 1.48 1.48 0 00.63-.67v-1H10a1.58 1.58 0 00-1.06.31z\" fill=\"none\"/>\n <path d=\"M8.94 10.56a1 1 0 00-.38.79.79.79 0 00.25.63 1.06 1.06 0 00.74.24 1.9 1.9 0 001.06-.3 1.48 1.48 0 00.63-.67v-1H10a1.58 1.58 0 00-1.06.31z\" fill=\"none\"/>\n <path d=\"M12.76 11.75V8.69A2.16 2.16 0 0012 6.93a2.93 2.93 0 00-1.94-.61 3.06 3.06 0 00-2 .63 1.69 1.69 0 00-.73 1.44h1.5a.83.83 0 01.31-.65 1.3 1.3 0 01.86-.22 1.23 1.23 0 01.91.31 1.07 1.07 0 01.32.84v.61H10a3.74 3.74 0 00-2.22.56A1.78 1.78 0 007 11.39a2 2 0 00.58 1.52 2.27 2.27 0 001.65.56 2.12 2.12 0 001.16-.33 2.79 2.79 0 00.83-.81 4.17 4.17 0 00.08.49 4.77 4.77 0 00.13.51H13a4 4 0 01-.18-.76 5.55 5.55 0 01-.06-.82zm-1.52-.5a1.48 1.48 0 01-.63.67 1.9 1.9 0 01-1.06.3 1.06 1.06 0 01-.74-.22.79.79 0 01-.25-.63 1 1 0 01.38-.79 1.58 1.58 0 011.06-.35h1.24zM7 19h2v2H7zM7 15h2v2H7zM3 15h2v2H3zM15 7h2v2h-2zM15 3h2v2h-2zM3 19h2v2H3zM19 19h2v2h-2zM19 7h2v2h-2zM15 19h2v2h-2zM19 3h2v2h-2zM15 11h2v2h-2zM19 11h2v2h-2zM15 15h2v2h-2zM19 15h2v2h-2zM11 19h2v2h-2zM11 15h2v2h-2zM11 3h2v2h-2zM7 3h2v2H7zM3 3h2v2H3zM3 7h2v2H3zM3 11h2v2H3z\"/>\n <path d=\"M0 0h24v24H0z\" fill=\"none\"/>\n <path d=\"M0 0h24v24H0z\" fill=\"none\"/>\n</svg>\n\n";
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, EventEmitter, ViewContainerRef, ElementRef } from '@angular/core';
|
|
2
|
-
import { Subject } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class IgxChartMenuComponent implements AfterViewInit {
|
|
5
|
-
private element;
|
|
6
|
-
chartArea: ViewContainerRef;
|
|
7
|
-
onClose: EventEmitter<any>;
|
|
8
|
-
get width(): any;
|
|
9
|
-
set width(value: any);
|
|
10
|
-
get height(): any;
|
|
11
|
-
set height(value: any);
|
|
12
|
-
chartDialogResizeNotify: Subject<unknown>;
|
|
13
|
-
private contentObserver;
|
|
14
|
-
images: any;
|
|
15
|
-
chartDirective: any;
|
|
16
|
-
currentChartType: any;
|
|
17
|
-
title: any;
|
|
18
|
-
allCharts: any[];
|
|
19
|
-
fullScreen: boolean;
|
|
20
|
-
isConfigAreaExpanded: boolean;
|
|
21
|
-
mainChartTypes: string[];
|
|
22
|
-
private _width;
|
|
23
|
-
private _height;
|
|
24
|
-
constructor(element: ElementRef<any>);
|
|
25
|
-
ngAfterViewInit(): void;
|
|
26
|
-
toggleFullScreen(): void;
|
|
27
|
-
hasAvailableChart(chartType: any): boolean;
|
|
28
|
-
createChart(chartType: any): void;
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgxChartMenuComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxChartMenuComponent, "igx-chart-menu", never, {}, { "onClose": "onClose"; }, never, never, true, never>;
|
|
31
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, ElementRef, ViewContainerRef, OnDestroy } from '@angular/core';
|
|
2
|
-
import { IgxOverlayService, IgxToggleDirective, IgxTabsComponent } from 'igniteui-angular';
|
|
3
|
-
import { IgxContextMenuDirective } from './igx-context-menu.directive';
|
|
4
|
-
import { CHART_TYPE } from '../directives/chart-integration/chart-types';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class IgxContextMenuComponent implements AfterViewInit, OnDestroy {
|
|
7
|
-
private overlayService;
|
|
8
|
-
button: ElementRef;
|
|
9
|
-
tabsMenu: IgxToggleDirective;
|
|
10
|
-
chartPreview: ViewContainerRef;
|
|
11
|
-
chartPreviewDialog: IgxToggleDirective;
|
|
12
|
-
tabs: IgxTabsComponent;
|
|
13
|
-
contextDirective: IgxContextMenuDirective;
|
|
14
|
-
chartTypes: any[];
|
|
15
|
-
textFormatters: any[];
|
|
16
|
-
currentChartType: any;
|
|
17
|
-
currentFormatter: any;
|
|
18
|
-
displayCreationTab: boolean;
|
|
19
|
-
private destroy$;
|
|
20
|
-
private _dialogId;
|
|
21
|
-
private _chartDialogOS;
|
|
22
|
-
private _tabsMenuOverlaySettings;
|
|
23
|
-
private _chartPreviewDialogOverlaySettings;
|
|
24
|
-
chartImages: any;
|
|
25
|
-
conditionImages: any;
|
|
26
|
-
constructor(overlayService: IgxOverlayService);
|
|
27
|
-
ngAfterViewInit(): void;
|
|
28
|
-
ngOnDestroy(): void;
|
|
29
|
-
toggleTabMenu(): void;
|
|
30
|
-
formatCells(condition: any): void;
|
|
31
|
-
clearFormat(): void;
|
|
32
|
-
previewChart(currentChartType: any): void;
|
|
33
|
-
hidePreview(): void;
|
|
34
|
-
openDialog(type?: CHART_TYPE): void;
|
|
35
|
-
closeDialog(): void;
|
|
36
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgxContextMenuComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxContextMenuComponent, "igx-context-menu", never, {}, {}, never, never, true, never>;
|
|
38
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, EventEmitter, OnInit, OnDestroy } from '@angular/core';
|
|
2
|
-
import { IgxGridComponent, IgxOverlayService } from 'igniteui-angular';
|
|
3
|
-
import { Subject } from 'rxjs';
|
|
4
|
-
import { IgxChartIntegrationDirective } from '../directives/chart-integration/chart-integration.directive';
|
|
5
|
-
import { IgxConditionalFormattingDirective } from '../directives/conditional-formatting/conditional-formatting.directive';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class IgxContextMenuDirective implements OnInit, AfterViewInit, OnDestroy {
|
|
8
|
-
grid: IgxGridComponent;
|
|
9
|
-
textFormatter: IgxConditionalFormattingDirective;
|
|
10
|
-
chartsDirective: IgxChartIntegrationDirective;
|
|
11
|
-
private overlayService;
|
|
12
|
-
displayCreationTab: boolean;
|
|
13
|
-
onButtonClose: EventEmitter<any>;
|
|
14
|
-
formatters: any[];
|
|
15
|
-
charts: any[];
|
|
16
|
-
gridResizeNotify: Subject<void>;
|
|
17
|
-
private contentObserver;
|
|
18
|
-
private _range;
|
|
19
|
-
private _id;
|
|
20
|
-
private _collapsed;
|
|
21
|
-
private destroy$;
|
|
22
|
-
private _analyticsBtnSettings;
|
|
23
|
-
constructor(grid: IgxGridComponent, textFormatter: IgxConditionalFormattingDirective, chartsDirective: IgxChartIntegrationDirective, overlayService: IgxOverlayService);
|
|
24
|
-
ngOnInit(): void;
|
|
25
|
-
ngAfterViewInit(): void;
|
|
26
|
-
ngOnDestroy(): void;
|
|
27
|
-
private setUpGridListeners;
|
|
28
|
-
private renderButton;
|
|
29
|
-
private renderHeaderButton;
|
|
30
|
-
private show;
|
|
31
|
-
private close;
|
|
32
|
-
private isWithInRange;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgxContextMenuDirective, [null, { optional: true; }, { optional: true; }, null]>;
|
|
34
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxContextMenuDirective, "[igxContextMenu]", never, { "displayCreationTab": { "alias": "displayCreationTab"; "required": false; }; }, { "onButtonClose": "onButtonClose"; }, never, never, true, never>;
|
|
35
|
-
}
|