genesys-spark-chart-components 4.137.0 → 4.137.2

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.
Files changed (45) hide show
  1. package/dist/cjs/{color-palette-3dd51fc1.js → color-palette-5ef2abb1.js} +6 -6
  2. package/dist/cjs/genesys-chart-webcomponents.cjs.js +2 -2
  3. package/dist/cjs/gux-chart-column-beta.cjs.entry.js +10 -14
  4. package/dist/cjs/gux-chart-donut-beta.cjs.entry.js +2 -19
  5. package/dist/cjs/gux-chart-line-beta.cjs.entry.js +10 -17
  6. package/dist/cjs/gux-chart-pie-beta.cjs.entry.js +2 -10
  7. package/dist/cjs/gux-chart-scatter-plot-beta.cjs.entry.js +10 -15
  8. package/dist/cjs/gux-visualization-beta.cjs.entry.js +2 -4
  9. package/dist/cjs/{index-409a039b.js → index-e390a39a.js} +252 -180
  10. package/dist/cjs/loader.cjs.js +1 -1
  11. package/dist/collection/collection-manifest.json +1 -1
  12. package/dist/collection/components/beta/gux-chart-column/gux-chart-column.js +37 -15
  13. package/dist/collection/components/beta/gux-chart-donut/gux-chart-donut.js +41 -20
  14. package/dist/collection/components/beta/gux-chart-line/gux-chart-line.js +42 -17
  15. package/dist/collection/components/beta/gux-chart-pie/gux-chart-pie.js +20 -10
  16. package/dist/collection/components/beta/gux-chart-scatter-plot/gux-chart-scatter-plot.js +38 -15
  17. package/dist/collection/components/beta/gux-visualization/gux-visualization.js +6 -4
  18. package/dist/esm/{color-palette-51afa253.js → color-palette-a623ee46.js} +6 -6
  19. package/dist/esm/genesys-chart-webcomponents.js +3 -3
  20. package/dist/esm/gux-chart-column-beta.entry.js +10 -14
  21. package/dist/esm/gux-chart-donut-beta.entry.js +2 -19
  22. package/dist/esm/gux-chart-line-beta.entry.js +10 -17
  23. package/dist/esm/gux-chart-pie-beta.entry.js +2 -10
  24. package/dist/esm/gux-chart-scatter-plot-beta.entry.js +10 -15
  25. package/dist/esm/gux-visualization-beta.entry.js +2 -4
  26. package/dist/esm/{index-6f89ddc9.js → index-eabc38b4.js} +252 -180
  27. package/dist/esm/loader.js +2 -2
  28. package/dist/genesys-chart-webcomponents/genesys-chart-webcomponents.esm.js +1 -1
  29. package/dist/genesys-chart-webcomponents/p-0d724f09.entry.js +1 -0
  30. package/dist/genesys-chart-webcomponents/p-3167a2bc.entry.js +1 -0
  31. package/dist/genesys-chart-webcomponents/p-4e1cbed4.entry.js +1 -0
  32. package/dist/genesys-chart-webcomponents/{p-e570f3e1.js → p-50f05a65.js} +1 -1
  33. package/dist/genesys-chart-webcomponents/p-72ff1a26.entry.js +1 -0
  34. package/dist/genesys-chart-webcomponents/p-977a4087.js +2 -0
  35. package/dist/genesys-chart-webcomponents/{p-5ae7bdb8.entry.js → p-ed27c58c.entry.js} +2 -2
  36. package/dist/genesys-chart-webcomponents/p-fe155fec.entry.js +1 -0
  37. package/dist/stencil-wrapper.js +1 -1
  38. package/dist/types/stencil-wrapper.d.ts +1 -1
  39. package/package.json +6 -6
  40. package/dist/genesys-chart-webcomponents/p-04650dbf.entry.js +0 -1
  41. package/dist/genesys-chart-webcomponents/p-0630a48a.entry.js +0 -1
  42. package/dist/genesys-chart-webcomponents/p-2785542e.entry.js +0 -1
  43. package/dist/genesys-chart-webcomponents/p-699aab7f.js +0 -2
  44. package/dist/genesys-chart-webcomponents/p-c25e95d7.entry.js +0 -1
  45. package/dist/genesys-chart-webcomponents/p-e670f1a9.entry.js +0 -1
@@ -5,6 +5,14 @@ import * as VisualizationColorUtil from "../../../utils/theme/color-palette";
5
5
  import { logError } from "../../../utils/error/log-error";
6
6
  export class GuxColumnChart {
7
7
  constructor() {
8
+ /**
9
+ * Optional label color
10
+ */
11
+ this.labelColor = VisualizationColorUtil.DEFAULT_LABEL_COLOR;
12
+ /**
13
+ * Optional domain line color
14
+ */
15
+ this.domainColor = VisualizationColorUtil.DEFAULT_DOMAIN_COLOR;
8
16
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
9
17
  this.baseChartSpec = {
10
18
  $schema: 'https://vega.github.io/schema/vega-lite/v5.json',
@@ -36,19 +44,7 @@ export class GuxColumnChart {
36
44
  tooltip: { aggregate: 'count', type: 'quantitative' }
37
45
  }
38
46
  };
39
- this.labelColor = VisualizationColorUtil.DEFAULT_LABEL_COLOR;
40
- this.domainColor = VisualizationColorUtil.DEFAULT_DOMAIN_COLOR;
41
- this.chartData = undefined;
42
- this.xTickLabelSlant = undefined;
43
- this.includeLegend = undefined;
44
- this.xFieldName = undefined;
45
- this.yFieldName = undefined;
46
- this.xAxisTitle = undefined;
47
- this.yAxisTitle = undefined;
48
- this.legendTitle = undefined;
49
47
  this.legendPosition = 'right';
50
- this.chartLayers = undefined;
51
- this.embedOptions = undefined;
52
48
  }
53
49
  parseData() {
54
50
  if (!this.xFieldName || !this.yFieldName) {
@@ -156,6 +152,8 @@ export class GuxColumnChart {
156
152
  "tags": [],
157
153
  "text": "Optional label color"
158
154
  },
155
+ "getter": false,
156
+ "setter": false,
159
157
  "attribute": "label-color",
160
158
  "reflect": false,
161
159
  "defaultValue": "VisualizationColorUtil.DEFAULT_LABEL_COLOR"
@@ -174,6 +172,8 @@ export class GuxColumnChart {
174
172
  "tags": [],
175
173
  "text": "Optional domain line color"
176
174
  },
175
+ "getter": false,
176
+ "setter": false,
177
177
  "attribute": "domain-color",
178
178
  "reflect": false,
179
179
  "defaultValue": "VisualizationColorUtil.DEFAULT_DOMAIN_COLOR"
@@ -196,7 +196,9 @@ export class GuxColumnChart {
196
196
  "docs": {
197
197
  "tags": [],
198
198
  "text": "Data to be rendered in the chart.\nData field names must match the values you set in xFieldName and yFieldName"
199
- }
199
+ },
200
+ "getter": false,
201
+ "setter": false
200
202
  },
201
203
  "xTickLabelSlant": {
202
204
  "type": "boolean",
@@ -212,6 +214,8 @@ export class GuxColumnChart {
212
214
  "tags": [],
213
215
  "text": "If true, then make Axis tick label 45 degrees"
214
216
  },
217
+ "getter": false,
218
+ "setter": false,
215
219
  "attribute": "x-tick-label-slant",
216
220
  "reflect": false
217
221
  },
@@ -229,6 +233,8 @@ export class GuxColumnChart {
229
233
  "tags": [],
230
234
  "text": ""
231
235
  },
236
+ "getter": false,
237
+ "setter": false,
232
238
  "attribute": "include-legend",
233
239
  "reflect": false
234
240
  },
@@ -246,6 +252,8 @@ export class GuxColumnChart {
246
252
  "tags": [],
247
253
  "text": "Name for the data field to use to populate the chart's x-axis\ne.g. xFieldName of \"category\" will map any \"category\" fields in chartData to the x-axis"
248
254
  },
255
+ "getter": false,
256
+ "setter": false,
249
257
  "attribute": "x-field-name",
250
258
  "reflect": false
251
259
  },
@@ -263,6 +271,8 @@ export class GuxColumnChart {
263
271
  "tags": [],
264
272
  "text": "Name for the data field to use to populate the chart's x-axis\ne.g. yFieldName of \"value\" will map any \"value\" fields in chartData to the y-axis"
265
273
  },
274
+ "getter": false,
275
+ "setter": false,
266
276
  "attribute": "y-field-name",
267
277
  "reflect": false
268
278
  },
@@ -280,6 +290,8 @@ export class GuxColumnChart {
280
290
  "tags": [],
281
291
  "text": "Title to display along the x-axis"
282
292
  },
293
+ "getter": false,
294
+ "setter": false,
283
295
  "attribute": "x-axis-title",
284
296
  "reflect": false
285
297
  },
@@ -297,6 +309,8 @@ export class GuxColumnChart {
297
309
  "tags": [],
298
310
  "text": "Title to display along the y-axis"
299
311
  },
312
+ "getter": false,
313
+ "setter": false,
300
314
  "attribute": "y-axis-title",
301
315
  "reflect": false
302
316
  },
@@ -314,6 +328,8 @@ export class GuxColumnChart {
314
328
  "tags": [],
315
329
  "text": "Title to display above the optional legend"
316
330
  },
331
+ "getter": false,
332
+ "setter": false,
317
333
  "attribute": "legend-title",
318
334
  "reflect": false
319
335
  },
@@ -331,6 +347,8 @@ export class GuxColumnChart {
331
347
  "tags": [],
332
348
  "text": ""
333
349
  },
350
+ "getter": false,
351
+ "setter": false,
334
352
  "attribute": "legend-position",
335
353
  "reflect": false,
336
354
  "defaultValue": "'right'"
@@ -348,7 +366,9 @@ export class GuxColumnChart {
348
366
  "docs": {
349
367
  "tags": [],
350
368
  "text": "List specifying the order of optional chart layers.\nFor correct chart layering, each chartData entry must also include a \"series\" field with a value indicating which layer the entry belongs to, e.g 'series': 'group1'"
351
- }
369
+ },
370
+ "getter": false,
371
+ "setter": false
352
372
  },
353
373
  "embedOptions": {
354
374
  "type": "unknown",
@@ -369,7 +389,9 @@ export class GuxColumnChart {
369
389
  "docs": {
370
390
  "tags": [],
371
391
  "text": ""
372
- }
392
+ },
393
+ "getter": false,
394
+ "setter": false
373
395
  }
374
396
  };
375
397
  }
@@ -38,25 +38,8 @@ export class GuxDonutChart {
38
38
  ],
39
39
  view: { stroke: null }
40
40
  };
41
- this.chartData = undefined;
42
- this.includeLegend = undefined;
43
41
  this.legendPosition = 'right';
44
- this.legendTitle = undefined;
45
- this.colorFieldName = undefined;
46
- this.outerRadius = undefined;
47
- this.innerRadius = undefined;
48
- this.labelRadius = undefined;
49
- this.labelField = undefined;
50
- this.gauge = undefined;
51
- this.centerText = undefined;
52
- this.centerSubText = undefined;
53
42
  this.showTooltip = true;
54
- this.tooltipOptions = undefined;
55
- this.legendX = undefined;
56
- this.legendY = undefined;
57
- this.legendFontSize = undefined;
58
- this.legendSymbolSize = undefined;
59
- this.embedOptions = undefined;
60
43
  }
61
44
  parseData() {
62
45
  if (!this.outerRadius && !this.innerRadius) {
@@ -245,7 +228,9 @@ export class GuxDonutChart {
245
228
  "docs": {
246
229
  "tags": [],
247
230
  "text": "Data to be rendered in the chart.\nData field names must match the values you set in xFieldName and yFieldName"
248
- }
231
+ },
232
+ "getter": false,
233
+ "setter": false
249
234
  },
250
235
  "includeLegend": {
251
236
  "type": "boolean",
@@ -261,6 +246,8 @@ export class GuxDonutChart {
261
246
  "tags": [],
262
247
  "text": ""
263
248
  },
249
+ "getter": false,
250
+ "setter": false,
264
251
  "attribute": "include-legend",
265
252
  "reflect": false
266
253
  },
@@ -278,6 +265,8 @@ export class GuxDonutChart {
278
265
  "tags": [],
279
266
  "text": ""
280
267
  },
268
+ "getter": false,
269
+ "setter": false,
281
270
  "attribute": "legend-position",
282
271
  "reflect": false,
283
272
  "defaultValue": "'right'"
@@ -296,6 +285,8 @@ export class GuxDonutChart {
296
285
  "tags": [],
297
286
  "text": ""
298
287
  },
288
+ "getter": false,
289
+ "setter": false,
299
290
  "attribute": "legend-title",
300
291
  "reflect": false
301
292
  },
@@ -313,6 +304,8 @@ export class GuxDonutChart {
313
304
  "tags": [],
314
305
  "text": ""
315
306
  },
307
+ "getter": false,
308
+ "setter": false,
316
309
  "attribute": "color-field-name",
317
310
  "reflect": false
318
311
  },
@@ -330,6 +323,8 @@ export class GuxDonutChart {
330
323
  "tags": [],
331
324
  "text": ""
332
325
  },
326
+ "getter": false,
327
+ "setter": false,
333
328
  "attribute": "outer-radius",
334
329
  "reflect": false
335
330
  },
@@ -347,6 +342,8 @@ export class GuxDonutChart {
347
342
  "tags": [],
348
343
  "text": ""
349
344
  },
345
+ "getter": false,
346
+ "setter": false,
350
347
  "attribute": "inner-radius",
351
348
  "reflect": false
352
349
  },
@@ -364,6 +361,8 @@ export class GuxDonutChart {
364
361
  "tags": [],
365
362
  "text": ""
366
363
  },
364
+ "getter": false,
365
+ "setter": false,
367
366
  "attribute": "label-radius",
368
367
  "reflect": false
369
368
  },
@@ -381,6 +380,8 @@ export class GuxDonutChart {
381
380
  "tags": [],
382
381
  "text": ""
383
382
  },
383
+ "getter": false,
384
+ "setter": false,
384
385
  "attribute": "label-field",
385
386
  "reflect": false
386
387
  },
@@ -398,6 +399,8 @@ export class GuxDonutChart {
398
399
  "tags": [],
399
400
  "text": ""
400
401
  },
402
+ "getter": false,
403
+ "setter": false,
401
404
  "attribute": "gauge",
402
405
  "reflect": false
403
406
  },
@@ -415,6 +418,8 @@ export class GuxDonutChart {
415
418
  "tags": [],
416
419
  "text": ""
417
420
  },
421
+ "getter": false,
422
+ "setter": false,
418
423
  "attribute": "center-text",
419
424
  "reflect": false
420
425
  },
@@ -432,6 +437,8 @@ export class GuxDonutChart {
432
437
  "tags": [],
433
438
  "text": ""
434
439
  },
440
+ "getter": false,
441
+ "setter": false,
435
442
  "attribute": "center-sub-text",
436
443
  "reflect": false
437
444
  },
@@ -449,6 +456,8 @@ export class GuxDonutChart {
449
456
  "tags": [],
450
457
  "text": ""
451
458
  },
459
+ "getter": false,
460
+ "setter": false,
452
461
  "attribute": "show-tooltip",
453
462
  "reflect": false,
454
463
  "defaultValue": "true"
@@ -472,7 +481,9 @@ export class GuxDonutChart {
472
481
  "docs": {
473
482
  "tags": [],
474
483
  "text": ""
475
- }
484
+ },
485
+ "getter": false,
486
+ "setter": false
476
487
  },
477
488
  "legendX": {
478
489
  "type": "number",
@@ -488,6 +499,8 @@ export class GuxDonutChart {
488
499
  "tags": [],
489
500
  "text": ""
490
501
  },
502
+ "getter": false,
503
+ "setter": false,
491
504
  "attribute": "legend-x",
492
505
  "reflect": false
493
506
  },
@@ -505,6 +518,8 @@ export class GuxDonutChart {
505
518
  "tags": [],
506
519
  "text": ""
507
520
  },
521
+ "getter": false,
522
+ "setter": false,
508
523
  "attribute": "legend-y",
509
524
  "reflect": false
510
525
  },
@@ -522,6 +537,8 @@ export class GuxDonutChart {
522
537
  "tags": [],
523
538
  "text": ""
524
539
  },
540
+ "getter": false,
541
+ "setter": false,
525
542
  "attribute": "legend-font-size",
526
543
  "reflect": false
527
544
  },
@@ -539,6 +556,8 @@ export class GuxDonutChart {
539
556
  "tags": [],
540
557
  "text": ""
541
558
  },
559
+ "getter": false,
560
+ "setter": false,
542
561
  "attribute": "legend-symbol-size",
543
562
  "reflect": false
544
563
  },
@@ -561,7 +580,9 @@ export class GuxDonutChart {
561
580
  "docs": {
562
581
  "tags": [],
563
582
  "text": ""
564
- }
583
+ },
584
+ "getter": false,
585
+ "setter": false
565
586
  }
566
587
  };
567
588
  }
@@ -6,6 +6,14 @@ import { logError } from "../../../utils/error/log-error";
6
6
  const DEFAULT_COLOR_FIELD_NAME = 'category';
7
7
  export class GuxLineChart {
8
8
  constructor() {
9
+ /**
10
+ * Optional label color
11
+ */
12
+ this.labelColor = VisualizationColorUtil.DEFAULT_LABEL_COLOR;
13
+ /**
14
+ * Optional domain line color
15
+ */
16
+ this.domainColor = VisualizationColorUtil.DEFAULT_DOMAIN_COLOR;
9
17
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
10
18
  this.baseChartSpec = {
11
19
  $schema: 'https://vega.github.io/schema/vega-lite/v5.json',
@@ -40,22 +48,7 @@ export class GuxLineChart {
40
48
  tooltip: { aggregate: 'count', type: 'quantitative' }
41
49
  }
42
50
  };
43
- this.labelColor = VisualizationColorUtil.DEFAULT_LABEL_COLOR;
44
- this.domainColor = VisualizationColorUtil.DEFAULT_DOMAIN_COLOR;
45
- this.chartData = undefined;
46
- this.xTickLabelSlant = undefined;
47
- this.includeLegend = undefined;
48
51
  this.legendPosition = 'right';
49
- this.includeDataPointMarkers = undefined;
50
- this.xFieldName = undefined;
51
- this.xAxisTitle = undefined;
52
- this.yFieldName = undefined;
53
- this.yAxisTitle = undefined;
54
- this.legendTitle = undefined;
55
- this.colorFieldName = undefined;
56
- this.strokeDash = undefined;
57
- this.interpolation = undefined;
58
- this.embedOptions = undefined;
59
52
  }
60
53
  parseData() {
61
54
  if (!this.xFieldName || !this.yFieldName) {
@@ -151,6 +144,8 @@ export class GuxLineChart {
151
144
  "tags": [],
152
145
  "text": "Optional label color"
153
146
  },
147
+ "getter": false,
148
+ "setter": false,
154
149
  "attribute": "label-color",
155
150
  "reflect": false,
156
151
  "defaultValue": "VisualizationColorUtil.DEFAULT_LABEL_COLOR"
@@ -169,6 +164,8 @@ export class GuxLineChart {
169
164
  "tags": [],
170
165
  "text": "Optional domain line color"
171
166
  },
167
+ "getter": false,
168
+ "setter": false,
172
169
  "attribute": "domain-color",
173
170
  "reflect": false,
174
171
  "defaultValue": "VisualizationColorUtil.DEFAULT_DOMAIN_COLOR"
@@ -191,7 +188,9 @@ export class GuxLineChart {
191
188
  "docs": {
192
189
  "tags": [],
193
190
  "text": "Data to be rendered in the chart.\nData field names must match the values you set in xFieldName and yFieldName"
194
- }
191
+ },
192
+ "getter": false,
193
+ "setter": false
195
194
  },
196
195
  "xTickLabelSlant": {
197
196
  "type": "boolean",
@@ -207,6 +206,8 @@ export class GuxLineChart {
207
206
  "tags": [],
208
207
  "text": "If true, then make Axis tick label 45 degrees"
209
208
  },
209
+ "getter": false,
210
+ "setter": false,
210
211
  "attribute": "x-tick-label-slant",
211
212
  "reflect": false
212
213
  },
@@ -224,6 +225,8 @@ export class GuxLineChart {
224
225
  "tags": [],
225
226
  "text": ""
226
227
  },
228
+ "getter": false,
229
+ "setter": false,
227
230
  "attribute": "include-legend",
228
231
  "reflect": false
229
232
  },
@@ -241,6 +244,8 @@ export class GuxLineChart {
241
244
  "tags": [],
242
245
  "text": ""
243
246
  },
247
+ "getter": false,
248
+ "setter": false,
244
249
  "attribute": "legend-position",
245
250
  "reflect": false,
246
251
  "defaultValue": "'right'"
@@ -259,6 +264,8 @@ export class GuxLineChart {
259
264
  "tags": [],
260
265
  "text": ""
261
266
  },
267
+ "getter": false,
268
+ "setter": false,
262
269
  "attribute": "include-data-point-markers",
263
270
  "reflect": false
264
271
  },
@@ -276,6 +283,8 @@ export class GuxLineChart {
276
283
  "tags": [],
277
284
  "text": "Name for the data field to use to populate the chart's x-axis\ne.g. xFieldName of \"category\" will map any \"category\" fields in chartData to the x-axis"
278
285
  },
286
+ "getter": false,
287
+ "setter": false,
279
288
  "attribute": "x-field-name",
280
289
  "reflect": false
281
290
  },
@@ -293,6 +302,8 @@ export class GuxLineChart {
293
302
  "tags": [],
294
303
  "text": "Title to display along the x-axis"
295
304
  },
305
+ "getter": false,
306
+ "setter": false,
296
307
  "attribute": "x-axis-title",
297
308
  "reflect": false
298
309
  },
@@ -310,6 +321,8 @@ export class GuxLineChart {
310
321
  "tags": [],
311
322
  "text": "Name for the data field to use to populate the chart's x-axis\ne.g. yFieldName of \"value\" will map any \"value\" fields in chartData to the y-axis"
312
323
  },
324
+ "getter": false,
325
+ "setter": false,
313
326
  "attribute": "y-field-name",
314
327
  "reflect": false
315
328
  },
@@ -327,6 +340,8 @@ export class GuxLineChart {
327
340
  "tags": [],
328
341
  "text": "Title to display along the y-axis"
329
342
  },
343
+ "getter": false,
344
+ "setter": false,
330
345
  "attribute": "y-axis-title",
331
346
  "reflect": false
332
347
  },
@@ -344,6 +359,8 @@ export class GuxLineChart {
344
359
  "tags": [],
345
360
  "text": "Title to display above the optional legend"
346
361
  },
362
+ "getter": false,
363
+ "setter": false,
347
364
  "attribute": "legend-title",
348
365
  "reflect": false
349
366
  },
@@ -361,6 +378,8 @@ export class GuxLineChart {
361
378
  "tags": [],
362
379
  "text": ""
363
380
  },
381
+ "getter": false,
382
+ "setter": false,
364
383
  "attribute": "color-field-name",
365
384
  "reflect": false
366
385
  },
@@ -378,6 +397,8 @@ export class GuxLineChart {
378
397
  "tags": [],
379
398
  "text": ""
380
399
  },
400
+ "getter": false,
401
+ "setter": false,
381
402
  "attribute": "stroke-dash",
382
403
  "reflect": false
383
404
  },
@@ -395,6 +416,8 @@ export class GuxLineChart {
395
416
  "tags": [],
396
417
  "text": ""
397
418
  },
419
+ "getter": false,
420
+ "setter": false,
398
421
  "attribute": "interpolation",
399
422
  "reflect": false
400
423
  },
@@ -417,7 +440,9 @@ export class GuxLineChart {
417
440
  "docs": {
418
441
  "tags": [],
419
442
  "text": ""
420
- }
443
+ },
444
+ "getter": false,
445
+ "setter": false
421
446
  }
422
447
  };
423
448
  }
@@ -38,15 +38,7 @@ export class GuxPieChart {
38
38
  ],
39
39
  view: { stroke: null }
40
40
  };
41
- this.chartData = undefined;
42
- this.includeLegend = undefined;
43
41
  this.legendPosition = 'right';
44
- this.legendTitle = undefined;
45
- this.colorFieldName = undefined;
46
- this.outerRadius = undefined;
47
- this.labelRadius = undefined;
48
- this.labelField = undefined;
49
- this.embedOptions = undefined;
50
42
  }
51
43
  parseData() {
52
44
  if (!this.outerRadius) {
@@ -129,7 +121,9 @@ export class GuxPieChart {
129
121
  "docs": {
130
122
  "tags": [],
131
123
  "text": "Data to be rendered in the chart.\nData field names must match the values you set in xFieldName and yFieldName"
132
- }
124
+ },
125
+ "getter": false,
126
+ "setter": false
133
127
  },
134
128
  "includeLegend": {
135
129
  "type": "boolean",
@@ -145,6 +139,8 @@ export class GuxPieChart {
145
139
  "tags": [],
146
140
  "text": ""
147
141
  },
142
+ "getter": false,
143
+ "setter": false,
148
144
  "attribute": "include-legend",
149
145
  "reflect": false
150
146
  },
@@ -162,6 +158,8 @@ export class GuxPieChart {
162
158
  "tags": [],
163
159
  "text": ""
164
160
  },
161
+ "getter": false,
162
+ "setter": false,
165
163
  "attribute": "legend-position",
166
164
  "reflect": false,
167
165
  "defaultValue": "'right'"
@@ -180,6 +178,8 @@ export class GuxPieChart {
180
178
  "tags": [],
181
179
  "text": ""
182
180
  },
181
+ "getter": false,
182
+ "setter": false,
183
183
  "attribute": "legend-title",
184
184
  "reflect": false
185
185
  },
@@ -197,6 +197,8 @@ export class GuxPieChart {
197
197
  "tags": [],
198
198
  "text": ""
199
199
  },
200
+ "getter": false,
201
+ "setter": false,
200
202
  "attribute": "color-field-name",
201
203
  "reflect": false
202
204
  },
@@ -214,6 +216,8 @@ export class GuxPieChart {
214
216
  "tags": [],
215
217
  "text": ""
216
218
  },
219
+ "getter": false,
220
+ "setter": false,
217
221
  "attribute": "outer-radius",
218
222
  "reflect": false
219
223
  },
@@ -231,6 +235,8 @@ export class GuxPieChart {
231
235
  "tags": [],
232
236
  "text": ""
233
237
  },
238
+ "getter": false,
239
+ "setter": false,
234
240
  "attribute": "label-radius",
235
241
  "reflect": false
236
242
  },
@@ -248,6 +254,8 @@ export class GuxPieChart {
248
254
  "tags": [],
249
255
  "text": ""
250
256
  },
257
+ "getter": false,
258
+ "setter": false,
251
259
  "attribute": "label-field",
252
260
  "reflect": false
253
261
  },
@@ -270,7 +278,9 @@ export class GuxPieChart {
270
278
  "docs": {
271
279
  "tags": [],
272
280
  "text": ""
273
- }
281
+ },
282
+ "getter": false,
283
+ "setter": false
274
284
  }
275
285
  };
276
286
  }