@arcgis/charts-components 5.1.0-next.98 → 5.1.0-next.99
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cdn/437PRHGP.js +2 -0
- package/dist/cdn/7RRIPRBW.js +2 -0
- package/dist/cdn/{PHSAVE6E.js → BVLDD7VH.js} +1 -1
- package/dist/cdn/{BDROQPZY.js → D4THJNNH.js} +1 -1
- package/dist/cdn/FRTL3JKO.js +2 -0
- package/dist/cdn/{4MGAAHBF.js → KJXMX3GJ.js} +1 -1
- package/dist/cdn/{4F4XNNGS.js → NTMKUPVQ.js} +22 -22
- package/dist/cdn/R2R6BF6O.js +2 -0
- package/dist/cdn/{RK3BAJOA.js → SN4BIMRO.js} +1 -1
- package/dist/cdn/SXLPETPI.js +2 -0
- package/dist/cdn/UOUARC5O.js +2 -0
- package/dist/cdn/{FXXKMSX7.js → V3TCGIPS.js} +1 -1
- package/dist/cdn/VOTMKVNY.js +2 -0
- package/dist/cdn/{IYAA5JNA.js → XOY4K5NH.js} +1 -1
- package/dist/cdn/ZIAGMMWU.js +2 -0
- package/dist/cdn/index.js +1 -1
- package/dist/chunks/bar-chart-model.js +1 -1
- package/dist/chunks/combo-bar-line-chart-model.js +6 -6
- package/dist/chunks/heat-chart-model.js +8 -8
- package/dist/chunks/line-chart-model.js +3 -3
- package/dist/chunks/radar-chart-model.js +3 -3
- package/dist/chunks/rotated-state.js +29 -16
- package/dist/chunks/time-zone.js +11 -11
- package/dist/chunks/type-guards2.js +9 -9
- package/dist/components/arcgis-chart/customElement.d.ts +17 -2
- package/dist/components/arcgis-chart/customElement.js +938 -944
- package/dist/components/arcgis-charts-action-bar/customElement.js +1 -1
- package/dist/components/arcgis-charts-config-create-flow/customElement.js +1 -1
- package/dist/docs/api.json +1 -1
- package/dist/docs/docs.json +1 -1
- package/dist/docs/vscode.html-custom-data.json +1 -1
- package/dist/docs/web-types.json +1 -1
- package/dist/loader.js +1 -1
- package/dist/model/heat-chart-model/heat-chart-model.d.ts +2 -2
- package/dist/model/properties/rotated-state.d.ts +6 -0
- package/dist/model/properties/time-zone.d.ts +1 -11
- package/dist/types/lumina.d.ts +1 -1
- package/dist/types/preact.d.ts +1 -1
- package/dist/types/react.d.ts +1 -1
- package/dist/types/stencil.d.ts +1 -1
- package/package.json +3 -3
- package/dist/cdn/GOCPXSNF.js +0 -2
- package/dist/cdn/HAPHXGDG.js +0 -2
- package/dist/cdn/JUTIXOZ7.js +0 -2
- package/dist/cdn/OSLQS2GQ.js +0 -2
- package/dist/cdn/PMSMMLY4.js +0 -2
- package/dist/cdn/PZAAA62R.js +0 -2
- package/dist/cdn/URBTZGXF.js +0 -2
- package/dist/cdn/VFULMUE5.js +0 -2
|
@@ -1253,7 +1253,15 @@ export abstract class ArcgisChart extends LitElement {
|
|
|
1253
1253
|
*
|
|
1254
1254
|
* **Note**: Applicable to bar chart, line chart, combo bar and line chart and box plot.
|
|
1255
1255
|
*
|
|
1256
|
-
* @
|
|
1256
|
+
* @default false
|
|
1257
|
+
*/
|
|
1258
|
+
accessor rotated: boolean;
|
|
1259
|
+
/**
|
|
1260
|
+
* When `true`, the chart is rotated 90 degrees so that the x-axis becomes vertical and the y-axis becomes horizontal.
|
|
1261
|
+
*
|
|
1262
|
+
* **Note**: Applicable to bar chart, line chart, combo bar and line chart and box plot.
|
|
1263
|
+
*
|
|
1264
|
+
* @deprecated since 5.0. Use either [rotated](https://developers.arcgis.com/javascript/latest/references/charts-components/components/arcgis-chart/#rotated) or the charts model's [rotated](https://developers.arcgis.com/javascript/latest/references/charts-components/model/bar-chart-model/bar-chart-model/#rotated) prop instead.
|
|
1257
1265
|
* @default false
|
|
1258
1266
|
*/
|
|
1259
1267
|
accessor rotation: boolean;
|
|
@@ -1413,7 +1421,14 @@ export abstract class ArcgisChart extends LitElement {
|
|
|
1413
1421
|
/**
|
|
1414
1422
|
* Used to set a custom time zone for the chart.
|
|
1415
1423
|
*
|
|
1416
|
-
* @
|
|
1424
|
+
* @example
|
|
1425
|
+
* ```ts
|
|
1426
|
+
* chartComponent.timeZone = "America/Los_Angeles";
|
|
1427
|
+
* ```
|
|
1428
|
+
* @example
|
|
1429
|
+
* ```html
|
|
1430
|
+
* <arcgis-chart time-zone="America/Los_Angeles"></arcgis-chart>
|
|
1431
|
+
* ```
|
|
1417
1432
|
*/
|
|
1418
1433
|
accessor timeZone: MapView["timeZone"] | undefined;
|
|
1419
1434
|
/**
|