diff --git a/code-gen-library/WebGridTestOnInit/WebComponents.ts b/code-gen-library/WebGridTestOnInit/WebComponents.ts index 5bc2332c..a5de71fe 100644 --- a/code-gen-library/WebGridTestOnInit/WebComponents.ts +++ b/code-gen-library/WebGridTestOnInit/WebComponents.ts @@ -10,7 +10,8 @@ export class WebGridTestOnInit { public webGridTestOnInit(): void { var grid = CodeGenHelper.getDescription("content"); grid.allowFiltering = true; - grid.filterMode = FilterMode.ExcelStyleFilter; + // grid.filterMode = FilterMode.ExcelStyleFilter; + grid.filterMode = "excelStyleFilter"; } //end eventHandler diff --git a/code-gen-library/WebTreeGridCellEditCellTemplate/WebComponents.ts b/code-gen-library/WebTreeGridCellEditCellTemplate/WebComponents.ts index 73c3caab..e6fad25f 100644 --- a/code-gen-library/WebTreeGridCellEditCellTemplate/WebComponents.ts +++ b/code-gen-library/WebTreeGridCellEditCellTemplate/WebComponents.ts @@ -9,7 +9,8 @@ export class WebTreeGridCellEditCellTemplate { public webTreeGridCellEditCellTemplate = (ctx: IgcCellTemplateContext) => { let cellValues: any = []; let uniqueValues: any = []; - for(const i of (this.roleplayTreeGridData as any)){ + let roleplayData = CodeGenHelper.findByName("roleplayTreeGridData") + for (const i of (roleplayData as any)){ const field: string = ctx.cell.column.field; if(uniqueValues.indexOf(i[field]) === -1 ) { diff --git a/samples/charts/category-chart/annotations-all.json b/samples/charts/category-chart/annotations-all.json index ec8af657..f7a7d8c6 100644 --- a/samples/charts/category-chart/annotations-all.json +++ b/samples/charts/category-chart/annotations-all.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Average Temperature in Sydney" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/category-chart/annotations-callouts.json b/samples/charts/category-chart/annotations-callouts.json index 3a9a7113..0c8854ac 100644 --- a/samples/charts/category-chart/annotations-callouts.json +++ b/samples/charts/category-chart/annotations-callouts.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Average Temperature in Sydney" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", @@ -29,7 +30,7 @@ "computedPlotAreaMarginMode": "Series", "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, - "includedProperties": ["Month", "Temperature"], + "includedProperties": [ "Month", "Temperature" ], "dataSourceRef": "TemperatureAnnotatedData", "autoCalloutsVisible": true, "crosshairsAnnotationYAxisPrecision": 0, diff --git a/samples/charts/category-chart/annotations-crosshairs.json b/samples/charts/category-chart/annotations-crosshairs.json index db63916f..255fa2eb 100644 --- a/samples/charts/category-chart/annotations-crosshairs.json +++ b/samples/charts/category-chart/annotations-crosshairs.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Average Temperature in Sydney" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/category-chart/annotations-custom.json b/samples/charts/category-chart/annotations-custom.json index e3f4958a..be504b15 100644 --- a/samples/charts/category-chart/annotations-custom.json +++ b/samples/charts/category-chart/annotations-custom.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Average Temperature in Sydney" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", @@ -29,7 +30,7 @@ "computedPlotAreaMarginMode": "Series", "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, - "includedProperties": ["Month", "Temperature"], + "includedProperties": [ "Month", "Temperature" ], "dataSourceRef": "TemperatureAnnotatedData", "crosshairsAnnotationYAxisPrecision": 0, "calloutsDataSourceRef": "TemperatureAnnotatedData", @@ -37,7 +38,7 @@ "calloutsXMemberPath": "Index", "calloutsYMemberPath": "Temperature", "calloutsLabelMemberPath": "TempInfo", - "calloutsAllowedPositions": ["Top", "Bottom"], + "calloutsAllowedPositions": [ "Top", "Bottom" ], "yAxisMaximumValue": 35, "yAxisLabelLocation": "OutsideRight" } diff --git a/samples/charts/category-chart/annotations-final-value.json b/samples/charts/category-chart/annotations-final-value.json index 951925b7..edfef8b1 100644 --- a/samples/charts/category-chart/annotations-final-value.json +++ b/samples/charts/category-chart/annotations-final-value.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Average Temperature in Sydney" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", @@ -29,7 +30,7 @@ "computedPlotAreaMarginMode": "Series", "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, - "includedProperties": ["Month", "Temperature"], + "includedProperties": [ "Month", "Temperature" ], "dataSourceRef": "TemperatureAnnotatedData", "finalValueAnnotationsVisible": true, "finalValueAnnotationsBackground": "dodgerblue", diff --git a/samples/charts/category-chart/annotations-highlighting.json b/samples/charts/category-chart/annotations-highlighting.json index 2e728e3d..f1b4978b 100644 --- a/samples/charts/category-chart/annotations-highlighting.json +++ b/samples/charts/category-chart/annotations-highlighting.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Average Temperature in Sydney" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/category-chart/area-chart-multiple-sources.json b/samples/charts/category-chart/area-chart-multiple-sources.json index 95bf8a09..be3a3006 100644 --- a/samples/charts/category-chart/area-chart-multiple-sources.json +++ b/samples/charts/category-chart/area-chart-multiple-sources.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -13,7 +14,7 @@ "name": "chart", "chartType": "Area", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "legendRef": "legend", "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, diff --git a/samples/charts/category-chart/area-chart-single-source.json b/samples/charts/category-chart/area-chart-single-source.json index e70473c7..4e48e904 100644 --- a/samples/charts/category-chart/area-chart-single-source.json +++ b/samples/charts/category-chart/area-chart-single-source.json @@ -2,12 +2,13 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "content": { "type": "CategoryChart", "name": "chart", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe"], + "includedProperties": [ "Year", "Europe" ], "chartType": "Area", "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, diff --git a/samples/charts/category-chart/area-chart-styling.json b/samples/charts/category-chart/area-chart-styling.json index 3b33b373..1d7a8892 100644 --- a/samples/charts/category-chart/area-chart-styling.json +++ b/samples/charts/category-chart/area-chart-styling.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -12,17 +13,17 @@ "type": "CategoryChart", "name": "chart", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "chartType": "Area", "legendRef": "legend", "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, - "markerTypes": ["Triangle"], + "markerTypes": [ "Triangle" ], - "markerBrushes": ["white"], - "markerOutlines": ["#8ce7d9", "#ee5879", "#735656"], - "brushes": ["#8ce7d9", "#ee5879", "#735656"], - "outlines": ["#8ce7d9", "#ee5879", "#735656"], + "markerBrushes": [ "white" ], + "markerOutlines": [ "#8ce7d9", "#ee5879", "#735656" ], + "brushes": [ "#8ce7d9", "#ee5879", "#735656" ], + "outlines": [ "#8ce7d9", "#ee5879", "#735656" ], "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, diff --git a/samples/charts/category-chart/axis-gap.json b/samples/charts/category-chart/axis-gap.json index 89318d80..aef2d1ef 100644 --- a/samples/charts/category-chart/axis-gap.json +++ b/samples/charts/category-chart/axis-gap.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", @@ -30,8 +31,8 @@ "label": "Maximum Gap", "shouldOverrideDefaultEditor": true, "valueType": "EnumValue", - "dropDownNames": ["1.5", "1.3", "1.0", "0.6", "0.5", "0.4", "0.3", "0.2", "0.1", "0"], - "dropDownValues": ["1.5", "1.3", "1.0", "0.6", "0.5", "0.4", "0.3", "0.2", "0.1", "0"], + "dropDownNames": [ "1.5", "1.3", "1.0", "0.6", "0.5", "0.4", "0.3", "0.2", "0.1", "0" ], + "dropDownValues": [ "1.5", "1.3", "1.0", "0.6", "0.5", "0.4", "0.3", "0.2", "0.1", "0" ], "primitiveValue": 0.5 } ] @@ -40,7 +41,7 @@ "type": "CategoryChart", "name": "chart", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "chartType": "Column", "crosshairsSnapToData": true, "yAxisTitle": "TWh", diff --git a/samples/charts/category-chart/axis-gridlines.json b/samples/charts/category-chart/axis-gridlines.json index 6fa10e69..290265da 100644 --- a/samples/charts/category-chart/axis-gridlines.json +++ b/samples/charts/category-chart/axis-gridlines.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -23,8 +24,8 @@ "label": "Y Axis Stroke", "shouldOverrideDefaultEditor": true, "valueType": "EnumValue", - "dropDownNames": ["gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen"], - "dropDownValues": ["gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen"], + "dropDownNames": [ "gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen" ], + "dropDownValues": [ "gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen" ], "primitiveValue": "gray" }, { @@ -34,8 +35,8 @@ "label": "Y Axis Major Stroke", "shouldOverrideDefaultEditor": true, "valueType": "EnumValue", - "dropDownNames": ["gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen"], - "dropDownValues": ["gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen"], + "dropDownNames": [ "gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen" ], + "dropDownValues": [ "gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen" ], "primitiveValue": "darkslategray" }, { @@ -45,8 +46,8 @@ "label": "Y Axis Minor Stroke", "shouldOverrideDefaultEditor": true, "valueType": "EnumValue", - "dropDownNames": ["gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen"], - "dropDownValues": ["gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen"], + "dropDownNames": [ "gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen" ], + "dropDownValues": [ "gray", "darkslategray", "salmon", "cornflowerblue", "darkgreen" ], "primitiveValue": "gray" } ] @@ -56,7 +57,7 @@ "name": "chart", "computedPlotAreaMarginMode": "Series", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "chartType": "Line", "legendRef": "legend", "isHorizontalZoomEnabled": false, diff --git a/samples/charts/category-chart/axis-inverted.json b/samples/charts/category-chart/axis-inverted.json index d82c62c8..416ca8cf 100644 --- a/samples/charts/category-chart/axis-inverted.json +++ b/samples/charts/category-chart/axis-inverted.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", @@ -37,7 +38,7 @@ "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe"], + "includedProperties": [ "Year", "Europe" ], "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, "yAxisTitleRightMargin": 5, diff --git a/samples/charts/category-chart/axis-labels.json b/samples/charts/category-chart/axis-labels.json index bfa0b528..875433c8 100644 --- a/samples/charts/category-chart/axis-labels.json +++ b/samples/charts/category-chart/axis-labels.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -23,8 +24,8 @@ "label": "X Axis Label Angle", "shouldOverrideDefaultEditor": true, "valueType": "EnumValue", - "dropDownNames": ["0", "45", "90", "135", "180", "225", "270"], - "dropDownValues": ["0", "45", "90", "135", "180", "225", "270"], + "dropDownNames": [ "0", "45", "90", "135", "180", "225", "270" ], + "dropDownValues": [ "0", "45", "90", "135", "180", "225", "270" ], "primitiveValue": 0 }, { @@ -34,8 +35,8 @@ "label": "Y Axis Label Angle", "shouldOverrideDefaultEditor": true, "valueType": "EnumValue", - "dropDownNames": ["-90", "-45", "0", "45", "90"], - "dropDownValues": ["-90", "-45", "0", "45", "90"], + "dropDownNames": [ "-90", "-45", "0", "45", "90" ], + "dropDownValues": [ "-90", "-45", "0", "45", "90" ], "primitiveValue": 0 }, { @@ -45,8 +46,8 @@ "label": "Y Axis Label Color", "valueType": "EnumValue", "shouldOverrideDefaultEditor": true, - "dropDownNames": [ "red", "green"], - "dropDownValues": [ "red", "green"], + "dropDownNames": [ "red", "green" ], + "dropDownValues": [ "red", "green" ], "primitiveValue": "red" } ] @@ -55,7 +56,7 @@ "type": "CategoryChart", "name": "chart", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "chartType": "Line", "computedPlotAreaMarginMode": "Series", "legendRef": "legend", diff --git a/samples/charts/category-chart/axis-locations.json b/samples/charts/category-chart/axis-locations.json index c9316691..6caee9d9 100644 --- a/samples/charts/category-chart/axis-locations.json +++ b/samples/charts/category-chart/axis-locations.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -30,7 +31,7 @@ "name": "chart", "computedPlotAreaMarginMode": "Series", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "legendRef": "legend", "chartType": "Line", "yAxisTitle": "Labels Location", diff --git a/samples/charts/category-chart/axis-options.json b/samples/charts/category-chart/axis-options.json index a2f8f63f..36a28665 100644 --- a/samples/charts/category-chart/axis-options.json +++ b/samples/charts/category-chart/axis-options.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Olympic Medals By Country" }, + "hasAnimations": true, "descriptions": { "content": { "type": "CategoryChart", diff --git a/samples/charts/category-chart/axis-overlap.json b/samples/charts/category-chart/axis-overlap.json index e846acbb..12a09a49 100644 --- a/samples/charts/category-chart/axis-overlap.json +++ b/samples/charts/category-chart/axis-overlap.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", diff --git a/samples/charts/category-chart/axis-range.json b/samples/charts/category-chart/axis-range.json index 3b94f6f7..b4f926be 100644 --- a/samples/charts/category-chart/axis-range.json +++ b/samples/charts/category-chart/axis-range.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -23,8 +24,8 @@ "label": "Y Axis Minimum Value", "shouldOverrideDefaultEditor": true, "valueType": "EnumValue", - "dropDownNames": ["0", "10", "20", "30", "40", "50", "60", "70", "80", "90", "100"], - "dropDownValues": ["0", "10", "20", "30", "40", "50", "60", "70", "80", "90", "100"], + "dropDownNames": [ "0", "10", "20", "30", "40", "50", "60", "70", "80", "90", "100" ], + "dropDownValues": [ "0", "10", "20", "30", "40", "50", "60", "70", "80", "90", "100" ], "primitiveValue": 0, "changedRef": "EditorChangeUpdateYAxisMinimumValue" }, @@ -35,8 +36,8 @@ "label": "Y Axis Maximum Value", "shouldOverrideDefaultEditor": true, "valueType": "EnumValue", - "dropDownNames": ["100", "110", "120", "130", "140", "150", "160", "170", "180", "190", "200"], - "dropDownValues": ["100", "110", "120", "130", "140", "150", "160", "170", "180", "190", "200"], + "dropDownNames": [ "100", "110", "120", "130", "140", "150", "160", "170", "180", "190", "200" ], + "dropDownValues": [ "100", "110", "120", "130", "140", "150", "160", "170", "180", "190", "200" ], "primitiveValue": 150, "changedRef": "EditorChangeUpdateYAxisMaximumValue" } @@ -46,7 +47,7 @@ "type": "CategoryChart", "name": "chart", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "legendRef": "legend", "chartType": "Line", "computedPlotAreaMarginMode": "Series", diff --git a/samples/charts/category-chart/axis-tickmarks.json b/samples/charts/category-chart/axis-tickmarks.json index 47ac2bb4..258c4fb9 100644 --- a/samples/charts/category-chart/axis-tickmarks.json +++ b/samples/charts/category-chart/axis-tickmarks.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -33,7 +34,7 @@ "type": "CategoryChart", "name": "chart", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "legendRef": "legend", "chartType": "Line", "computedPlotAreaMarginMode": "Series", diff --git a/samples/charts/category-chart/axis-titles.json b/samples/charts/category-chart/axis-titles.json index 7d3e0e5d..1f2d32da 100644 --- a/samples/charts/category-chart/axis-titles.json +++ b/samples/charts/category-chart/axis-titles.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -12,7 +13,7 @@ "type": "CategoryChart", "name": "chart", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "chartType": "Line", "legendRef": "legend", "isHorizontalZoomEnabled": false, diff --git a/samples/charts/category-chart/chart-highlight-filter.json b/samples/charts/category-chart/chart-highlight-filter.json index 6812a69d..a7d40976 100644 --- a/samples/charts/category-chart/chart-highlight-filter.json +++ b/samples/charts/category-chart/chart-highlight-filter.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Sales Filtered by Country" }, + "hasAnimations": true, "skipAlterDataCasing": true, "descriptions": { "editor": { diff --git a/samples/charts/category-chart/column-chart-multiple-sources.json b/samples/charts/category-chart/column-chart-multiple-sources.json index 077028cc..cfffcbc9 100644 --- a/samples/charts/category-chart/column-chart-multiple-sources.json +++ b/samples/charts/category-chart/column-chart-multiple-sources.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", diff --git a/samples/charts/category-chart/column-chart-single-source.json b/samples/charts/category-chart/column-chart-single-source.json index f8e53253..b46acc4d 100644 --- a/samples/charts/category-chart/column-chart-single-source.json +++ b/samples/charts/category-chart/column-chart-single-source.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Average Temperature Range in New York" }, + "hasAnimations": true, "descriptions": { "content": { "type": "CategoryChart", diff --git a/samples/charts/category-chart/column-chart-styling.json b/samples/charts/category-chart/column-chart-styling.json index 52547e5e..f052348d 100644 --- a/samples/charts/category-chart/column-chart-styling.json +++ b/samples/charts/category-chart/column-chart-styling.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Percentage Change in Energy Generation" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -18,8 +19,8 @@ "isVerticalZoomEnabled": false, "isSeriesHighlightingEnabled": true, - "brushes": ["#9de772", "#8b5bb1", "#6db1ff", "#ee5879", "#f8a15f"], - "outlines": ["white"], + "brushes": [ "#9de772", "#8b5bb1", "#6db1ff", "#ee5879", "#f8a15f" ], + "outlines": [ "white" ], "xAxisMajorStroke": "lightgrey", "xAxisGap": 0.5, diff --git a/samples/charts/category-chart/column-chart-with-tooltips.json b/samples/charts/category-chart/column-chart-with-tooltips.json index f10cb1bf..d2e2f177 100644 --- a/samples/charts/category-chart/column-chart-with-tooltips.json +++ b/samples/charts/category-chart/column-chart-with-tooltips.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/category-chart/custom-selection.json b/samples/charts/category-chart/custom-selection.json index 4b84f482..62b6d75a 100644 --- a/samples/charts/category-chart/custom-selection.json +++ b/samples/charts/category-chart/custom-selection.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Chart with Multiple Selectable Data Columns" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "DataLegend", diff --git a/samples/charts/category-chart/data-aggregations.json b/samples/charts/category-chart/data-aggregations.json index a50b345b..d4ec9143 100644 --- a/samples/charts/category-chart/data-aggregations.json +++ b/samples/charts/category-chart/data-aggregations.json @@ -2,7 +2,8 @@ "strings": { "legendTitle": "Sales Aggregated by Country and Product" }, - "onViewInit": ["PropertyEditorInitAggregationsOnViewInit"], + "hasAnimations": true, + "onViewInit": [ "PropertyEditorInitAggregationsOnViewInit" ], "skipAlterDataCasing": true, "descriptions": { "editor": { @@ -21,8 +22,8 @@ "label": "Initial Groups", "valueType": "EnumValue", "shouldOverrideDefaultEditor": true, - "dropDownNames": ["Country", "Product", "Month", "Year"], - "dropDownValues": ["Country", "Product", "Month", "Year"], + "dropDownNames": [ "Country", "Product", "Month", "Year" ], + "dropDownValues": [ "Country", "Product", "Month", "Year" ], "primitiveValue": "Country", "changedRef": "EditorChangeUpdateInitialGroups" } diff --git a/samples/charts/category-chart/data-filter.json b/samples/charts/category-chart/data-filter.json index 47f48764..8275e6c8 100644 --- a/samples/charts/category-chart/data-filter.json +++ b/samples/charts/category-chart/data-filter.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Annual Birth Rates by World Region" }, + "hasAnimations": true, "skipAlterDataCasing": true, "descriptions": { "legend": { @@ -25,8 +26,8 @@ "label": "Modify Filter", "valueType": "EnumValue", "shouldOverrideDefaultEditor": true, - "dropDownNames": ["1950", "1960", "1970", "1980", "1990", "2000", "2010", "2020"], - "dropDownValues": ["1950", "1960", "1970", "1980", "1990", "2000", "2010", "2020"], + "dropDownNames": [ "1950", "1960", "1970", "1980", "1990", "2000", "2010", "2020" ], + "dropDownValues": [ "1950", "1960", "1970", "1980", "1990", "2000", "2010", "2020" ], "changedRef": "EditorChangeDataFilter" } ] diff --git a/samples/charts/category-chart/data-legend-formatting-decimals.json b/samples/charts/category-chart/data-legend-formatting-decimals.json index a4b563f5..d64a2e81 100644 --- a/samples/charts/category-chart/data-legend-formatting-decimals.json +++ b/samples/charts/category-chart/data-legend-formatting-decimals.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "DataLegend", diff --git a/samples/charts/category-chart/data-legend.json b/samples/charts/category-chart/data-legend.json index 2fa6b42e..ddeed047 100644 --- a/samples/charts/category-chart/data-legend.json +++ b/samples/charts/category-chart/data-legend.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "DataLegend", diff --git a/samples/charts/category-chart/data-tooltip-formatting-decimals.json b/samples/charts/category-chart/data-tooltip-formatting-decimals.json index a517aed6..003d1bcf 100644 --- a/samples/charts/category-chart/data-tooltip-formatting-decimals.json +++ b/samples/charts/category-chart/data-tooltip-formatting-decimals.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "content": { "type": "CategoryChart", diff --git a/samples/charts/category-chart/data-tooltip-positioning.json b/samples/charts/category-chart/data-tooltip-positioning.json index 9cc5aaf4..3d8ee3d5 100644 --- a/samples/charts/category-chart/data-tooltip-positioning.json +++ b/samples/charts/category-chart/data-tooltip-positioning.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/category-chart/format-specifiers.json b/samples/charts/category-chart/format-specifiers.json index cd165840..186e666e 100644 --- a/samples/charts/category-chart/format-specifiers.json +++ b/samples/charts/category-chart/format-specifiers.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "legend": { "name": "legend", diff --git a/samples/charts/category-chart/highlighting-behavior.json b/samples/charts/category-chart/highlighting-behavior.json index 0597d5e7..d2737454 100644 --- a/samples/charts/category-chart/highlighting-behavior.json +++ b/samples/charts/category-chart/highlighting-behavior.json @@ -1,4 +1,5 @@ { + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/category-chart/highlighting-mode.json b/samples/charts/category-chart/highlighting-mode.json index fb078090..e473935b 100644 --- a/samples/charts/category-chart/highlighting-mode.json +++ b/samples/charts/category-chart/highlighting-mode.json @@ -1,4 +1,5 @@ { + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/category-chart/legend-highlighting.json b/samples/charts/category-chart/legend-highlighting.json index 06447f68..90ccfd7c 100644 --- a/samples/charts/category-chart/legend-highlighting.json +++ b/samples/charts/category-chart/legend-highlighting.json @@ -1,4 +1,5 @@ { + "hasAnimations": true, "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, diff --git a/samples/charts/category-chart/line-chart-multiple-sources.json b/samples/charts/category-chart/line-chart-multiple-sources.json index 20569bdb..0c4c6fd7 100644 --- a/samples/charts/category-chart/line-chart-multiple-sources.json +++ b/samples/charts/category-chart/line-chart-multiple-sources.json @@ -1,4 +1,5 @@ { + "hasAnimations": true, "strings": { "legendTitle": "Renewable Electricity Generated" }, @@ -15,7 +16,7 @@ "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "legendRef": "legend", "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, diff --git a/samples/charts/category-chart/line-chart-single-source.json b/samples/charts/category-chart/line-chart-single-source.json index d2b05757..38ca9f46 100644 --- a/samples/charts/category-chart/line-chart-single-source.json +++ b/samples/charts/category-chart/line-chart-single-source.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "content": { "type": "CategoryChart", @@ -10,7 +11,7 @@ "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe"], + "includedProperties": [ "Year", "Europe" ], "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, "yAxisTitleRightMargin": 5, diff --git a/samples/charts/category-chart/line-chart-styling.json b/samples/charts/category-chart/line-chart-styling.json index 77d549b1..0a3643f5 100644 --- a/samples/charts/category-chart/line-chart-styling.json +++ b/samples/charts/category-chart/line-chart-styling.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -16,12 +17,12 @@ "legendRef": "legend", "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, - "markerTypes": ["Circle"], + "markerTypes": [ "Circle" ], - "markerBrushes": ["#ee5879", "#c4c4c4", "#9af2e4"], - "markerOutlines": ["#FFFFFF"], - "brushes": ["#ee5879", "#c4c4c4", "#9af2e4"], - "outlines": ["#ee5879", "#c4c4c4", "#9af2e4"], + "markerBrushes": [ "#ee5879", "#c4c4c4", "#9af2e4" ], + "markerOutlines": [ "#FFFFFF" ], + "brushes": [ "#ee5879", "#c4c4c4", "#9af2e4" ], + "outlines": [ "#ee5879", "#c4c4c4", "#9af2e4" ], "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, diff --git a/samples/charts/category-chart/marker-options.json b/samples/charts/category-chart/marker-options.json index fd601499..f87208c4 100644 --- a/samples/charts/category-chart/marker-options.json +++ b/samples/charts/category-chart/marker-options.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/category-chart/overview.json b/samples/charts/category-chart/overview.json index 1f7a69eb..56c126ef 100644 --- a/samples/charts/category-chart/overview.json +++ b/samples/charts/category-chart/overview.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Olympic Medals By Country" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", diff --git a/samples/charts/category-chart/point-chart-multiple-sources.json b/samples/charts/category-chart/point-chart-multiple-sources.json index 8f56f22a..2bb00b53 100644 --- a/samples/charts/category-chart/point-chart-multiple-sources.json +++ b/samples/charts/category-chart/point-chart-multiple-sources.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", diff --git a/samples/charts/category-chart/point-chart-single-source.json b/samples/charts/category-chart/point-chart-single-source.json index ef6e7721..78d51d8f 100644 --- a/samples/charts/category-chart/point-chart-single-source.json +++ b/samples/charts/category-chart/point-chart-single-source.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "content": { "type": "CategoryChart", @@ -10,7 +11,7 @@ "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe"], + "includedProperties": [ "Year", "Europe" ], "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, "yAxisTitleRightMargin": 5, diff --git a/samples/charts/category-chart/point-chart-styling.json b/samples/charts/category-chart/point-chart-styling.json index 6ec3685b..622482b5 100644 --- a/samples/charts/category-chart/point-chart-styling.json +++ b/samples/charts/category-chart/point-chart-styling.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", diff --git a/samples/charts/category-chart/selection-matcher.json b/samples/charts/category-chart/selection-matcher.json index e2d97c96..e17fc85f 100644 --- a/samples/charts/category-chart/selection-matcher.json +++ b/samples/charts/category-chart/selection-matcher.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "onViewInit": [ "SelectionMatcherOnViewInit" ], "descriptions": { "legend": { diff --git a/samples/charts/category-chart/selection-modes.json b/samples/charts/category-chart/selection-modes.json index 94e07974..face0be6 100644 --- a/samples/charts/category-chart/selection-modes.json +++ b/samples/charts/category-chart/selection-modes.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Average Temperature Range in New York" }, + "hasAnimations": true, "descriptions": { "content": { "type": "CategoryChart", diff --git a/samples/charts/category-chart/selection-multiple-modes.json b/samples/charts/category-chart/selection-multiple-modes.json index cf073ff4..1e05b99a 100644 --- a/samples/charts/category-chart/selection-multiple-modes.json +++ b/samples/charts/category-chart/selection-multiple-modes.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", diff --git a/samples/charts/category-chart/spline-area-multiple-sources.json b/samples/charts/category-chart/spline-area-multiple-sources.json index 0c152ea4..5a1d2ded 100644 --- a/samples/charts/category-chart/spline-area-multiple-sources.json +++ b/samples/charts/category-chart/spline-area-multiple-sources.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", diff --git a/samples/charts/category-chart/spline-area-single-source.json b/samples/charts/category-chart/spline-area-single-source.json index fa5bec53..5bd0ab9d 100644 --- a/samples/charts/category-chart/spline-area-single-source.json +++ b/samples/charts/category-chart/spline-area-single-source.json @@ -2,13 +2,14 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "content": { "type": "CategoryChart", "name": "chart", "chartType": "SplineArea", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe"], + "includedProperties": [ "Year", "Europe" ], "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, "yAxisTitleRightMargin": 5, diff --git a/samples/charts/category-chart/spline-area-styling.json b/samples/charts/category-chart/spline-area-styling.json index f2038494..5c97ca0c 100644 --- a/samples/charts/category-chart/spline-area-styling.json +++ b/samples/charts/category-chart/spline-area-styling.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -18,11 +19,11 @@ "isTransitionInEnabled": true, "isVerticalZoomEnabled": false, "isHorizontalZoomEnabled": false, - "markerTypes": ["Triangle"], - "markerBrushes": ["white"], - "markerOutlines": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], - "brushes": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], - "outlines": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], + "markerTypes": [ "Triangle" ], + "markerBrushes": [ "white" ], + "markerOutlines": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], + "brushes": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], + "outlines": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], "computedPlotAreaMarginMode": "Series", "highlightingMode": "FadeOthersSpecific", "highlightingBehavior": "NearestItemsAndSeries" diff --git a/samples/charts/category-chart/spline-multiple-sources.json b/samples/charts/category-chart/spline-multiple-sources.json index b25f2590..bdf3abf0 100644 --- a/samples/charts/category-chart/spline-multiple-sources.json +++ b/samples/charts/category-chart/spline-multiple-sources.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", diff --git a/samples/charts/category-chart/spline-single-source.json b/samples/charts/category-chart/spline-single-source.json index 56354c80..8d150f00 100644 --- a/samples/charts/category-chart/spline-single-source.json +++ b/samples/charts/category-chart/spline-single-source.json @@ -2,13 +2,14 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "content": { "type": "CategoryChart", "name": "chart", "chartType": "Spline", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe"], + "includedProperties": [ "Year", "Europe" ], "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, "yAxisTitleRightMargin": 5, diff --git a/samples/charts/category-chart/spline-styling.json b/samples/charts/category-chart/spline-styling.json index 828b0738..bc9c848d 100644 --- a/samples/charts/category-chart/spline-styling.json +++ b/samples/charts/category-chart/spline-styling.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -18,11 +19,11 @@ "isTransitionInEnabled": true, "isVerticalZoomEnabled": false, "isHorizontalZoomEnabled": false, - "markerTypes": ["Triangle"], - "markerBrushes": ["white"], - "markerOutlines": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], - "brushes": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], - "outlines": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], + "markerTypes": [ "Triangle" ], + "markerBrushes": [ "white" ], + "markerOutlines": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], + "brushes": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], + "outlines": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], "computedPlotAreaMarginMode": "Series" } }, diff --git a/samples/charts/category-chart/step-area-multiple-sources.json b/samples/charts/category-chart/step-area-multiple-sources.json index 18f2a840..2e193b1a 100644 --- a/samples/charts/category-chart/step-area-multiple-sources.json +++ b/samples/charts/category-chart/step-area-multiple-sources.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", diff --git a/samples/charts/category-chart/step-area-single-source.json b/samples/charts/category-chart/step-area-single-source.json index 312c534b..ce23e7ae 100644 --- a/samples/charts/category-chart/step-area-single-source.json +++ b/samples/charts/category-chart/step-area-single-source.json @@ -2,10 +2,11 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "content": { "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe"], + "includedProperties": [ "Year", "Europe" ], "type": "CategoryChart", "name": "chart", "chartType": "StepArea", diff --git a/samples/charts/category-chart/step-area-styling.json b/samples/charts/category-chart/step-area-styling.json index d050e5ef..b3ff72c0 100644 --- a/samples/charts/category-chart/step-area-styling.json +++ b/samples/charts/category-chart/step-area-styling.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -10,7 +11,7 @@ }, "content": { "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "legendRef": "legend", "type": "CategoryChart", "name": "chart", @@ -21,11 +22,11 @@ "isTransitionInEnabled": true, "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, - "markerTypes": ["Triangle"], - "markerBrushes": ["white"], - "markerOutlines": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], - "brushes": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], - "outlines": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], + "markerTypes": [ "Triangle" ], + "markerBrushes": [ "white" ], + "markerOutlines": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], + "brushes": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], + "outlines": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], "crosshairsSnapToData": true } }, diff --git a/samples/charts/category-chart/step-line-multiple-sources.json b/samples/charts/category-chart/step-line-multiple-sources.json index ee95d120..7c125223 100644 --- a/samples/charts/category-chart/step-line-multiple-sources.json +++ b/samples/charts/category-chart/step-line-multiple-sources.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -14,7 +15,7 @@ "legendRef": "legend", "chartType": "StepLine", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "isCategoryHighlightingEnabled": true, "isSeriesHighlightingEnabled": true, "isHorizontalZoomEnabled": false, diff --git a/samples/charts/category-chart/step-line-single-source.json b/samples/charts/category-chart/step-line-single-source.json index 9587e1da..05cfc939 100644 --- a/samples/charts/category-chart/step-line-single-source.json +++ b/samples/charts/category-chart/step-line-single-source.json @@ -2,13 +2,14 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "content": { "type": "CategoryChart", "name": "chart", "chartType": "StepLine", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe"], + "includedProperties": [ "Year", "Europe" ], "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, "yAxisTitle": "TWh", diff --git a/samples/charts/category-chart/step-line-styling.json b/samples/charts/category-chart/step-line-styling.json index 2c96843e..cbe1da8d 100644 --- a/samples/charts/category-chart/step-line-styling.json +++ b/samples/charts/category-chart/step-line-styling.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -14,17 +15,17 @@ "legendRef": "legend", "chartType": "StepLine", "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "isCategoryHighlightingEnabled": true, "isSeriesHighlightingEnabled": true, "isHorizontalZoomEnabled": false, "isVerticalZoomEnabled": false, "yAxisTitle": "TWh", - "markerTypes": ["Triangle"], - "markerBrushes": ["white"], - "markerOutlines": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], - "brushes": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], - "outlines": ["rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)"], + "markerTypes": [ "Triangle" ], + "markerBrushes": [ "white" ], + "markerOutlines": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], + "brushes": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], + "outlines": [ "rgb(140, 231, 217)", "rgb(238, 88, 121)", "rgb(115, 86, 86)" ], "crosshairsSnapToData": true } }, diff --git a/samples/charts/data-chart/bar-chart-multiple-sources.json b/samples/charts/data-chart/bar-chart-multiple-sources.json index f8f72f9f..26ab0535 100644 --- a/samples/charts/data-chart/bar-chart-multiple-sources.json +++ b/samples/charts/data-chart/bar-chart-multiple-sources.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Highest Grossing Movie Franchises" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", diff --git a/samples/charts/data-chart/bar-chart-overlapping.json b/samples/charts/data-chart/bar-chart-overlapping.json index 9e1bd93e..fb8cbcc0 100644 --- a/samples/charts/data-chart/bar-chart-overlapping.json +++ b/samples/charts/data-chart/bar-chart-overlapping.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Roadblocks Critical to Success of the Data & Analytics Team" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "Legend", @@ -76,7 +77,7 @@ "type": "CalloutLayer", "name": "CalloutLayer1", "isAutoCalloutBehaviorEnabled": true, - "allowedPositions": ["Right"], + "allowedPositions": [ "Right" ], "calloutLeaderBrush": "transparent", "calloutOutline": "transparent", "calloutBackground": "transparent", @@ -89,7 +90,7 @@ "type": "CalloutLayer", "name": "CalloutLayer2", "isAutoCalloutBehaviorEnabled": true, - "allowedPositions": ["Right"], + "allowedPositions": [ "Right" ], "calloutLeaderBrush": "transparent", "calloutOutline": "transparent", "calloutBackground": "transparent", diff --git a/samples/charts/data-chart/bar-chart-single-source.json b/samples/charts/data-chart/bar-chart-single-source.json index 4f875a02..bfc0c950 100644 --- a/samples/charts/data-chart/bar-chart-single-source.json +++ b/samples/charts/data-chart/bar-chart-single-source.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Where Online Shoppers Start Their Search" }, + "hasAnimations": true, "descriptions": { "content": { "type": "DataChart", diff --git a/samples/charts/data-chart/bar-chart-styling.json b/samples/charts/data-chart/bar-chart-styling.json index 095ab167..c83b8643 100644 --- a/samples/charts/data-chart/bar-chart-styling.json +++ b/samples/charts/data-chart/bar-chart-styling.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Where Online Shoppers Start Their Search" }, + "hasAnimations": true, "descriptions": { "content": { "type": "DataChart", @@ -51,7 +52,7 @@ "type": "CalloutLayer", "name": "CalloutLayer1", "isAutoCalloutBehaviorEnabled": true, - "allowedPositions": ["Right"], + "allowedPositions": [ "Right" ], "calloutTextColor": "rgb(133, 6, 138)", "calloutBackground": "transparent", "calloutLeaderBrush": "transparent", diff --git a/samples/charts/data-chart/data-legend-grouping-and-highlighting.json b/samples/charts/data-chart/data-legend-grouping-and-highlighting.json index 10d7ec9f..939fa858 100644 --- a/samples/charts/data-chart/data-legend-grouping-and-highlighting.json +++ b/samples/charts/data-chart/data-legend-grouping-and-highlighting.json @@ -1,4 +1,5 @@ { + "hasAnimations": true, "descriptions": { "legend": { "type": "DataLegend", diff --git a/samples/charts/data-chart/data-legend-styling.json b/samples/charts/data-chart/data-legend-styling.json index a2ed61e8..76c47bcd 100644 --- a/samples/charts/data-chart/data-legend-styling.json +++ b/samples/charts/data-chart/data-legend-styling.json @@ -1,4 +1,5 @@ { + "hasAnimations": true, "descriptions": { "legend": { "type": "DataLegend", diff --git a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting.json b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting.json index 5f61095d..7466ffc8 100644 --- a/samples/charts/data-chart/data-tooltip-grouping-and-highlighting.json +++ b/samples/charts/data-chart/data-tooltip-grouping-and-highlighting.json @@ -1,4 +1,5 @@ { + "hasAnimations": true, "descriptions": { "content": { "type": "DataChart", diff --git a/samples/charts/data-chart/data-tooltip-styling.json b/samples/charts/data-chart/data-tooltip-styling.json index ec907f85..b36fe0e9 100644 --- a/samples/charts/data-chart/data-tooltip-styling.json +++ b/samples/charts/data-chart/data-tooltip-styling.json @@ -1,4 +1,5 @@ { + "hasAnimations": true, "descriptions": { "content": { "type": "DataChart", diff --git a/samples/charts/data-chart/transition-event.json b/samples/charts/data-chart/transition-event.json index 7ccbb591..2af48cd2 100644 --- a/samples/charts/data-chart/transition-event.json +++ b/samples/charts/data-chart/transition-event.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Facebook Consolidated Statements of Income" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/data-chart/waterfall-chart.json b/samples/charts/data-chart/waterfall-chart.json index cd995e79..3f38fff4 100644 --- a/samples/charts/data-chart/waterfall-chart.json +++ b/samples/charts/data-chart/waterfall-chart.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Facebook Consolidated Statements of Income" }, + "hasAnimations": true, "descriptions": { "content": { "type": "DataChart", diff --git a/samples/charts/data-pie-chart/animation.json b/samples/charts/data-pie-chart/animation.json index 62c23e26..fea165e6 100644 --- a/samples/charts/data-pie-chart/animation.json +++ b/samples/charts/data-pie-chart/animation.json @@ -1,7 +1,8 @@ -{ +{ "strings": { "legendTitle": "Global Electricity Demand by Energy Use" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/data-pie-chart/highlight-filter.json b/samples/charts/data-pie-chart/highlight-filter.json index f423540f..db4d9bf4 100644 --- a/samples/charts/data-pie-chart/highlight-filter.json +++ b/samples/charts/data-pie-chart/highlight-filter.json @@ -1,4 +1,5 @@ { + "hasAnimations": true, "descriptions": { "content": { "type": "DataPieChart", diff --git a/samples/charts/data-pie-chart/highlighting.json b/samples/charts/data-pie-chart/highlighting.json index dcdffe38..11d733ce 100644 --- a/samples/charts/data-pie-chart/highlighting.json +++ b/samples/charts/data-pie-chart/highlighting.json @@ -1,7 +1,8 @@ -{ +{ "strings": { "legendTitle": "Global Electricity Demand by Energy Use" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/data-pie-chart/legend.json b/samples/charts/data-pie-chart/legend.json index 2aabd375..1b126e4d 100644 --- a/samples/charts/data-pie-chart/legend.json +++ b/samples/charts/data-pie-chart/legend.json @@ -1,7 +1,8 @@ -{ +{ "strings": { "legendTitle": "Global Electricity Demand by Energy Use" }, + "hasAnimations": true, "descriptions": { "legend": { "type": "ItemLegend", diff --git a/samples/charts/data-pie-chart/others.json b/samples/charts/data-pie-chart/others.json index 2a82b5bd..80370086 100644 --- a/samples/charts/data-pie-chart/others.json +++ b/samples/charts/data-pie-chart/others.json @@ -1,7 +1,8 @@ -{ +{ "strings": { "legendTitle": "Global Electricity Demand by Energy Use" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/data-pie-chart/overview.json b/samples/charts/data-pie-chart/overview.json index d91fa607..40ac712b 100644 --- a/samples/charts/data-pie-chart/overview.json +++ b/samples/charts/data-pie-chart/overview.json @@ -1,7 +1,8 @@ -{ +{ "strings": { "legendTitle": "Global Electricity Demand by Energy Use" }, + "hasAnimations": true, "descriptions": { "content": { "type": "DataPieChart", diff --git a/samples/charts/data-pie-chart/selection.json b/samples/charts/data-pie-chart/selection.json index 0430c5b9..c972e5e0 100644 --- a/samples/charts/data-pie-chart/selection.json +++ b/samples/charts/data-pie-chart/selection.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Global Electricity Demand by Energy Use" }, + "hasAnimations": true, "descriptions": { "editor": { "type": "PropertyEditorPanel", diff --git a/samples/charts/toolbar/actions-built-in-category-chart.json b/samples/charts/toolbar/actions-built-in-category-chart.json index cd01e6aa..691aa39a 100644 --- a/samples/charts/toolbar/actions-built-in-category-chart.json +++ b/samples/charts/toolbar/actions-built-in-category-chart.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "descriptions": { "aboveContentRight": { "type": "Legend", @@ -21,7 +22,7 @@ "isHorizontalZoomEnabled": true, "isVerticalZoomEnabled": true, "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "legendRef": "legend", "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10, diff --git a/samples/charts/toolbar/custom-tool.json b/samples/charts/toolbar/custom-tool.json index 68b768c4..1ba2a2b8 100644 --- a/samples/charts/toolbar/custom-tool.json +++ b/samples/charts/toolbar/custom-tool.json @@ -2,6 +2,7 @@ "strings": { "legendTitle": "Renewable Electricity Generated" }, + "hasAnimations": true, "onViewInit": [ "ToolbarCustomIconOnViewInit" ], "descriptions": { "aboveContentRight": { @@ -30,7 +31,7 @@ "isHorizontalZoomEnabled": true, "isVerticalZoomEnabled": true, "dataSourceRef": "CountryRenewableElectricity", - "includedProperties": ["Year", "Europe", "China", "America"], + "includedProperties": [ "Year", "Europe", "China", "America" ], "legendRef": "legend", "yAxisTitle": "TWh", "yAxisTitleLeftMargin": 10,