From 78a03432dd58be828061f939c6c353e18a19fe8b Mon Sep 17 00:00:00 2001 From: Michael DiFilippo Date: Fri, 1 Apr 2022 12:06:40 -0400 Subject: [PATCH 1/8] Create timeline-axis-type.json mdd-add-timeline-sample --- .../charts/data-chart/timeline-axis-type.json | 70 +++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 samples/charts/data-chart/timeline-axis-type.json diff --git a/samples/charts/data-chart/timeline-axis-type.json b/samples/charts/data-chart/timeline-axis-type.json new file mode 100644 index 000000000..6f26ab4bd --- /dev/null +++ b/samples/charts/data-chart/timeline-axis-type.json @@ -0,0 +1,70 @@ +{ + "strings": { + "legendTitle": "Renewable Electricity Generated" + }, + "descriptions": { + "content": { + "type": "DataChart", + "name": "chart", + "axes": [ + { + "type": "CategoryXAxis", + "name": "xAxis", + "dataSourceRef": "data", + "label": "Year" + }, + { + "type": "NumericYAxis", + "name": "yAxis", + "title": "TWh", + "labelLocation": "OutsideRight" + } + ], + "series": [ + { + "type": "LineSeries", + "name": "LineSeries1", + "xAxisRef": "xAxis", + "yAxisRef": "yAxis", + "dataSourceRef": "data", + "valueMemberPath": "Y" + }, + { + "type": "CalloutLayer", + "name": "CalloutLayer1", + "dataSourceRef": "callouts", + "xMemberPath": "Index", + "yMemberPath": "Value", + "labelMemberPath": "Label", + "calloutLeaderBrush": "black", + "calloutOutline": "black", + "calloutBackground": "orange", + "calloutTextColor": "black", + "calloutStrokeThickness": 2 + } + ] + } + }, + "refs": { + "data": [ + { "Year": "23 June, 2016", "Europe": 31, "China": 21, "USA": 19 }, + { "Year": "29 March, 2017", "Europe": 43, "China": 26, "USA": 24 }, + { "Year": "19 June, 2017", "Europe": 66, "China": 29, "USA": 28 }, + { "Year": "19 March, 2018", "Europe": 69, "China": 32, "USA": 26 }, + { "Year": "25 November, 2018", "Europe": 58, "China": 47, "USA": 38 }, + { "Year": "29 October, 2019", "Europe": 40, "China": 46, "USA": 31 }, + { "Year": "31 December, 2020", "Europe": 78, "China": 50, "USA": 19 }, + { "Year": "2016", "Europe": 13, "China": 90, "USA": 52 }, + { "Year": "2017", "Europe": 78, "China": 132, "USA": 50 }, + { "Year": "2018", "Europe": 40, "China": 134, "USA": 34 }, + { "Year": "2019", "Europe": 80, "China": 96, "USA": 38 } + ] + }, + "modules": [ + "charts/DataChartCoreModule", + "charts/DataChartCategoryModule", + "charts/DataChartAnnotationModule", + "charts/DataChartInteractivityModule", + "charts/AnnotationLayerProxyModule" + ] +} \ No newline at end of file From 0bf0784fb76941b5246f634ca1e56aa3f2ceb99d Mon Sep 17 00:00:00 2001 From: Michael DiFilippo Date: Fri, 1 Apr 2022 12:08:06 -0400 Subject: [PATCH 2/8] Update timeline-axis-type.json update sample --- .../charts/data-chart/timeline-axis-type.json | 45 ++++++++++--------- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/samples/charts/data-chart/timeline-axis-type.json b/samples/charts/data-chart/timeline-axis-type.json index 6f26ab4bd..47f289810 100644 --- a/samples/charts/data-chart/timeline-axis-type.json +++ b/samples/charts/data-chart/timeline-axis-type.json @@ -8,10 +8,10 @@ "name": "chart", "axes": [ { - "type": "CategoryXAxis", + "type": "TimeXAxis", "name": "xAxis", "dataSourceRef": "data", - "label": "Year" + "dateTimeMemberPath": "Year", }, { "type": "NumericYAxis", @@ -32,10 +32,10 @@ { "type": "CalloutLayer", "name": "CalloutLayer1", - "dataSourceRef": "callouts", - "xMemberPath": "Index", - "yMemberPath": "Value", - "labelMemberPath": "Label", + "dataSourceRef": "data", + "xMemberPath": "Year", + "yMemberPath": "Y", + "labelMemberPath": "Year", "calloutLeaderBrush": "black", "calloutOutline": "black", "calloutBackground": "orange", @@ -47,24 +47,25 @@ }, "refs": { "data": [ - { "Year": "23 June, 2016", "Europe": 31, "China": 21, "USA": 19 }, - { "Year": "29 March, 2017", "Europe": 43, "China": 26, "USA": 24 }, - { "Year": "19 June, 2017", "Europe": 66, "China": 29, "USA": 28 }, - { "Year": "19 March, 2018", "Europe": 69, "China": 32, "USA": 26 }, - { "Year": "25 November, 2018", "Europe": 58, "China": 47, "USA": 38 }, - { "Year": "29 October, 2019", "Europe": 40, "China": 46, "USA": 31 }, - { "Year": "31 December, 2020", "Europe": 78, "China": 50, "USA": 19 }, - { "Year": "2016", "Europe": 13, "China": 90, "USA": 52 }, - { "Year": "2017", "Europe": 78, "China": 132, "USA": 50 }, - { "Year": "2018", "Europe": 40, "China": 134, "USA": 34 }, - { "Year": "2019", "Europe": 80, "China": 96, "USA": 38 } + { "Year": "23 June, 2016", "Y:": 5, "Details": "UK votes to exit the EU"}, + { "Year": "29 March, 2017", "Y:": 5, "Details": "The UK triggers Article 50"}, + { "Year": "19 June, 2017", "Y:": 5, "Details": "Brexit negotiations begin"}, + { "Year": "19 March, 2018", "Y:": 5, "Details": "The EU and the UK agree on a transition phase"}, + { "Year": "25 November, 2018", "Y:": 5, "Details": "Draft withdrawl deal agreed"}, + { "Year": "29 October, 2019", "Y:": 5, "Details": "EU heads of state and government approve postponing the Brexit date"}, + { "Year": "31 December, 2020", "Y:": 5, "Details": "Transition period ends"}, ] }, "modules": [ - "charts/DataChartCoreModule", - "charts/DataChartCategoryModule", - "charts/DataChartAnnotationModule", - "charts/DataChartInteractivityModule", - "charts/AnnotationLayerProxyModule" + "charts/DataChartCoreModule", + "charts/DataChartCategoryCoreModule", + "charts/DataChartCategoryModule", + "charts/DataChartVerticalCategoryModule", + "charts/TimeXAxisModule", + "charts/DataChartInteractivityModule", + "charts/DataChartExtendedAxesModule", + "charts/DataChartAnnotationModule", + "charts/AnnotationLayerProxyModule", + "charts/CalloutLayerModule", ] } \ No newline at end of file From 6aba4b71a95dea58dd452a32d9c1727851b58b72 Mon Sep 17 00:00:00 2001 From: Michael DiFilippo Date: Mon, 4 Apr 2022 15:09:48 -0400 Subject: [PATCH 3/8] Update timeline-axis-type.json Add Timeline Sample --- .../charts/data-chart/timeline-axis-type.json | 54 ++++++++++++------- 1 file changed, 35 insertions(+), 19 deletions(-) diff --git a/samples/charts/data-chart/timeline-axis-type.json b/samples/charts/data-chart/timeline-axis-type.json index 47f289810..83ffe1dd8 100644 --- a/samples/charts/data-chart/timeline-axis-type.json +++ b/samples/charts/data-chart/timeline-axis-type.json @@ -1,17 +1,21 @@ { + "export": false, "strings": { - "legendTitle": "Renewable Electricity Generated" + "legendTitle": "Brexit Timeline" }, "descriptions": { "content": { "type": "DataChart", "name": "chart", + "plotAreaMarginLeft": 100, + "plotAreaMarginRight": 100, "axes": [ { "type": "TimeXAxis", "name": "xAxis", "dataSourceRef": "data", "dateTimeMemberPath": "Year", + "labelLocation": "OutsideBottom" }, { "type": "NumericYAxis", @@ -20,6 +24,7 @@ "labelLocation": "OutsideRight" } ], + "plotAreaBackground": "rgba(255,255,255,1)", "series": [ { "type": "LineSeries", @@ -27,37 +32,48 @@ "xAxisRef": "xAxis", "yAxisRef": "yAxis", "dataSourceRef": "data", - "valueMemberPath": "Y" + "valueMemberPath": "Value", + "markerType": "Circle" }, { "type": "CalloutLayer", "name": "CalloutLayer1", + "targetSeriesRef": "LineSeries1", "dataSourceRef": "data", "xMemberPath": "Year", - "yMemberPath": "Y", + "yMemberPath": "Value", "labelMemberPath": "Year", - "calloutLeaderBrush": "black", - "calloutOutline": "black", - "calloutBackground": "orange", - "calloutTextColor": "black", - "calloutStrokeThickness": 2 - } - ] + "isAutoCalloutBehaviorEnabled": false, + "useValueForAutoCalloutLabels": false, + "calloutLeaderBrush": "#EC0D00", + "calloutTextColor": "navy", + "calloutOutline": "#EC0D00", + "calloutBackground": "transparent", + "isCalloutOffsettingEnabled": false, + "textStyle": "font-size: 25px", + "calloutPositionPadding": 50, + "calloutCollisionMode": "Greedy", + "showDefaultTooltip": false + } + ], + "legendRef": null, + "background": "rgba(0, 0, 0, 0)" } }, "refs": { "data": [ - { "Year": "23 June, 2016", "Y:": 5, "Details": "UK votes to exit the EU"}, - { "Year": "29 March, 2017", "Y:": 5, "Details": "The UK triggers Article 50"}, - { "Year": "19 June, 2017", "Y:": 5, "Details": "Brexit negotiations begin"}, - { "Year": "19 March, 2018", "Y:": 5, "Details": "The EU and the UK agree on a transition phase"}, - { "Year": "25 November, 2018", "Y:": 5, "Details": "Draft withdrawl deal agreed"}, - { "Year": "29 October, 2019", "Y:": 5, "Details": "EU heads of state and government approve postponing the Brexit date"}, - { "Year": "31 December, 2020", "Y:": 5, "Details": "Transition period ends"}, + {"Year": "23 June, 2016", "Value": 5, "Details": "UK votes to exit the EU"}, + {"Year": "29 March, 2017", "Value": 5, "Details": "The UK triggers Article 50"}, + {"Year": "19 June, 2017", "Value": 5, "Details": "Brexit negotiations begin"}, + {"Year": "19 March, 2018", "Value": 5, "Details": "The EU and the UK agree on a transition phase"}, + {"Year": "25 November, 2018", "Value": 5, "Details": "Draft withdrawl deal agreed"}, + {"Year": "29 October, 2019", "Value": 5, "Details": "EU heads of state and government approve postponing the Brexit date"}, + {"Year": "31 December, 2020", "Value": 5, "Details": "Transition period ends"} ] }, "modules": [ - "charts/DataChartCoreModule", + "withDescriptions", + "charts/DataChartCoreModule", "charts/DataChartCategoryCoreModule", "charts/DataChartCategoryModule", "charts/DataChartVerticalCategoryModule", @@ -66,6 +82,6 @@ "charts/DataChartExtendedAxesModule", "charts/DataChartAnnotationModule", "charts/AnnotationLayerProxyModule", - "charts/CalloutLayerModule", + "charts/CalloutLayerModule" ] } \ No newline at end of file From a423706f7c5ddbb1c12e06d1507b5c58b168b173 Mon Sep 17 00:00:00 2001 From: Michael DiFilippo Date: Mon, 4 Apr 2022 15:21:08 -0400 Subject: [PATCH 4/8] Update timeline-axis-type.json **Does Not Work** TimeXAxis causes series not to render. CalloutLayer's xMemberPath causes annotation not to render. --- .../charts/data-chart/timeline-axis-type.json | 23 ++++++++++++------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/samples/charts/data-chart/timeline-axis-type.json b/samples/charts/data-chart/timeline-axis-type.json index 83ffe1dd8..7b641b56e 100644 --- a/samples/charts/data-chart/timeline-axis-type.json +++ b/samples/charts/data-chart/timeline-axis-type.json @@ -10,6 +10,13 @@ "plotAreaMarginLeft": 100, "plotAreaMarginRight": 100, "axes": [ + { + "type": "CategoryXAxis", + "name": "xAxis", + "dataSourceRef": "data", + "label": "Year", + "labelLocation": "OutsideBottom" + }, { "type": "TimeXAxis", "name": "xAxis", @@ -40,7 +47,7 @@ "name": "CalloutLayer1", "targetSeriesRef": "LineSeries1", "dataSourceRef": "data", - "xMemberPath": "Year", + "xMemberPath": "", "yMemberPath": "Value", "labelMemberPath": "Year", "isAutoCalloutBehaviorEnabled": false, @@ -62,13 +69,13 @@ }, "refs": { "data": [ - {"Year": "23 June, 2016", "Value": 5, "Details": "UK votes to exit the EU"}, - {"Year": "29 March, 2017", "Value": 5, "Details": "The UK triggers Article 50"}, - {"Year": "19 June, 2017", "Value": 5, "Details": "Brexit negotiations begin"}, - {"Year": "19 March, 2018", "Value": 5, "Details": "The EU and the UK agree on a transition phase"}, - {"Year": "25 November, 2018", "Value": 5, "Details": "Draft withdrawl deal agreed"}, - {"Year": "29 October, 2019", "Value": 5, "Details": "EU heads of state and government approve postponing the Brexit date"}, - {"Year": "31 December, 2020", "Value": 5, "Details": "Transition period ends"} + {"Date": "2016, 6, 23", "Year": "23 June, 2016", "Value": 5, "Details": "UK votes to exit the EU"}, + {"Date": "2017, 3, 29", "Year": "29 March, 2017", "Value": 5, "Details": "The UK triggers Article 50"}, + {"Date": "2017, 6, 19", "Year": "19 June, 2017", "Value": 5, "Details": "Brexit negotiations begin"}, + {"Date": "2017, 3, 19", "Year": "19 March, 2018", "Value": 5, "Details": "The EU and the UK agree on a transition phase"}, + {"Date": "2018, 11, 25", "Year": "25 November, 2018", "Value": 5, "Details": "Draft withdrawl deal agreed"}, + {"Date": "2019, 10, 29", "Year": "29 October, 2019", "Value": 5, "Details": "EU heads of state and government approve postponing the Brexit date"}, + {"Date": "2020, 12, 31", "Year": "31 December, 2020", "Value": 5, "Details": "Transition period ends"} ] }, "modules": [ From 857f39925ae2a980d689a9648b0a59d5859ae686 Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 6 Jul 2023 14:49:53 -0400 Subject: [PATCH 5/8] Update timeline-axis-type.json --- .../charts/data-chart/timeline-axis-type.json | 41 ++++++++++--------- 1 file changed, 21 insertions(+), 20 deletions(-) diff --git a/samples/charts/data-chart/timeline-axis-type.json b/samples/charts/data-chart/timeline-axis-type.json index 7b641b56e..3c77f1259 100644 --- a/samples/charts/data-chart/timeline-axis-type.json +++ b/samples/charts/data-chart/timeline-axis-type.json @@ -9,6 +9,7 @@ "name": "chart", "plotAreaMarginLeft": 100, "plotAreaMarginRight": 100, + "chartTitle": "Brexit Timeline", "axes": [ { "type": "CategoryXAxis", @@ -57,11 +58,11 @@ "calloutOutline": "#EC0D00", "calloutBackground": "transparent", "isCalloutOffsettingEnabled": false, - "textStyle": "font-size: 25px", + "textStyle": "font-size: 0.8rem", "calloutPositionPadding": 50, "calloutCollisionMode": "Greedy", "showDefaultTooltip": false - } + } ], "legendRef": null, "background": "rgba(0, 0, 0, 0)" @@ -69,26 +70,26 @@ }, "refs": { "data": [ - {"Date": "2016, 6, 23", "Year": "23 June, 2016", "Value": 5, "Details": "UK votes to exit the EU"}, - {"Date": "2017, 3, 29", "Year": "29 March, 2017", "Value": 5, "Details": "The UK triggers Article 50"}, - {"Date": "2017, 6, 19", "Year": "19 June, 2017", "Value": 5, "Details": "Brexit negotiations begin"}, - {"Date": "2017, 3, 19", "Year": "19 March, 2018", "Value": 5, "Details": "The EU and the UK agree on a transition phase"}, - {"Date": "2018, 11, 25", "Year": "25 November, 2018", "Value": 5, "Details": "Draft withdrawl deal agreed"}, - {"Date": "2019, 10, 29", "Year": "29 October, 2019", "Value": 5, "Details": "EU heads of state and government approve postponing the Brexit date"}, - {"Date": "2020, 12, 31", "Year": "31 December, 2020", "Value": 5, "Details": "Transition period ends"} + {"Date": "2016, 6, 23", "Year": "23 JUN, 2016", "Value": 5, "Details": "UK votes to exit the EU"}, + {"Date": "2017, 3, 29", "Year": "29 MAR, 2017", "Value": 5, "Details": "The UK triggers Article 50"}, + {"Date": "2017, 6, 19", "Year": "19 JUN, 2017", "Value": 5, "Details": "Brexit negotiations begin"}, + {"Date": "2017, 3, 19", "Year": "19 MAR, 2018", "Value": 5, "Details": "The EU and the UK agree on a transition phase"}, + {"Date": "2018, 11, 25", "Year": "25 NOV, 2018", "Value": 5, "Details": "Draft withdrawl deal agreed"}, + {"Date": "2019, 10, 29", "Year": "29 OCT, 2019", "Value": 5, "Details": "EU heads of state and government approve postponing the Brexit date"}, + {"Date": "2020, 12, 31", "Year": "31 DEC, 2020", "Value": 5, "Details": "Transition period ends"} ] }, "modules": [ - "withDescriptions", - "charts/DataChartCoreModule", - "charts/DataChartCategoryCoreModule", - "charts/DataChartCategoryModule", - "charts/DataChartVerticalCategoryModule", - "charts/TimeXAxisModule", - "charts/DataChartInteractivityModule", - "charts/DataChartExtendedAxesModule", - "charts/DataChartAnnotationModule", - "charts/AnnotationLayerProxyModule", - "charts/CalloutLayerModule" + "withDescriptions", + "charts/DataChartCoreModule", + "charts/DataChartCategoryCoreModule", + "charts/DataChartCategoryModule", + "charts/DataChartVerticalCategoryModule", + "charts/TimeXAxisModule", + "charts/DataChartInteractivityModule", + "charts/DataChartExtendedAxesModule", + "charts/DataChartAnnotationModule", + "charts/AnnotationLayerProxyModule", + "charts/CalloutLayerModule" ] } \ No newline at end of file From f1f7b5179808a7134fd585988591c95064b0b92b Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 6 Jul 2023 16:33:36 -0400 Subject: [PATCH 6/8] mdd-peer-review mdd-peer-review --- .../charts/data-chart/timeline-axis-type.json | 2 +- .../data-chart/timeline-axis-type2.json | 82 +++++++++++++++++++ 2 files changed, 83 insertions(+), 1 deletion(-) create mode 100644 samples/charts/data-chart/timeline-axis-type2.json diff --git a/samples/charts/data-chart/timeline-axis-type.json b/samples/charts/data-chart/timeline-axis-type.json index 3c77f1259..70e4cc46f 100644 --- a/samples/charts/data-chart/timeline-axis-type.json +++ b/samples/charts/data-chart/timeline-axis-type.json @@ -1,5 +1,5 @@ { - "export": false, + "export": true, "strings": { "legendTitle": "Brexit Timeline" }, diff --git a/samples/charts/data-chart/timeline-axis-type2.json b/samples/charts/data-chart/timeline-axis-type2.json new file mode 100644 index 000000000..1098c27b5 --- /dev/null +++ b/samples/charts/data-chart/timeline-axis-type2.json @@ -0,0 +1,82 @@ +{ + "export": true, + "descriptions": { + "content": { + "type": "DataChart", + "name": "chart", + "plotAreaMarginLeft": 100, + "plotAreaMarginRight": 100, + "chartTitle": "Brexit Timeline", + "axes": [ + { + "type": "CategoryXAxis", + "name": "xAxis1", + "dataSourceRef": "data", + "labelLocation": "OutsideBottom" + }, + { + "type": "TimeXAxis", + "name": "xAxis2", + "dataSourceRef": "data", + "dateTimeMemberPath": "Year", + "labelLocation": "OutsideBottom" + }, + { + "type": "NumericYAxis", + "name": "yAxis", + "title": "TWh", + "labelLocation": "OutsideRight" + } + ], + "series": [ + { + "type": "CalloutLayer", + "name": "CalloutLayer1", + "targetSeriesRef": "LineSeries1", + "dataSourceRef": "data", + "xMemberPath": "Index", + "yMemberPath": "Value", + "labelMemberPath": "Year", + "isAutoCalloutBehaviorEnabled": false, + "useValueForAutoCalloutLabels": false, + "isCalloutOffsettingEnabled": false, + "calloutPositionPadding": 50, + "calloutCollisionMode": "Greedy", + "showDefaultTooltip": false + }, + { + "type": "LineSeries", + "name": "LineSeries1", + "xAxisRef": "xAxis1", + "yAxisRef": "yAxis", + "dataSourceRef": "data", + "valueMemberPath": "Value" + } + ] + } + }, + "refs": { + "data": [ + {"Index": 0, "Date": "2016, 6, 23", "Year": "23 JUN, 2016", "Value": 5, "Details": "UK votes to exit the EU"}, + {"Index": 1, "Date": "2017, 3, 29", "Year": "29 MAR, 2017", "Value": 5, "Details": "The UK triggers Article 50"}, + {"Index": 2, "Date": "2017, 6, 19", "Year": "19 JUN, 2017", "Value": 5, "Details": "Brexit negotiations begin"}, + {"Index": 3, "Date": "2017, 3, 19", "Year": "19 MAR, 2018", "Value": 5, "Details": "The EU and the UK agree on a transition phase"}, + {"Index": 4, "Date": "2018, 11, 25", "Year": "25 NOV, 2018", "Value": 5, "Details": "Draft withdrawl deal agreed"}, + {"Index": 5, "Date": "2019, 10, 29", "Year": "29 OCT, 2019", "Value": 5, "Details": "EU heads of state and government approve postponing the Brexit date"}, + {"Index": 6, "Date": "2020, 12, 31", "Year": "31 DEC, 2020", "Value": 5, "Details": "Transition period ends"} + ] + }, + "modules": [ + "withDescriptions", + "charts/DataChartCoreModule", + "charts/DataChartCategoryCoreModule", + "charts/DataChartCategoryModule", + "charts/DataChartVerticalCategoryModule", + "charts/TimeXAxisModule", + "charts/DataChartInteractivityModule", + "charts/DataChartExtendedAxesModule", + "charts/DataChartAnnotationModule", + "charts/AnnotationLayerProxyModule", + "charts/CalloutLayerModule" + ] +} \ No newline at end of file From dd5d97d78397782bffbfed931ed143600b206b9c Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 6 Jul 2023 16:34:10 -0400 Subject: [PATCH 7/8] Update timeline-axis-type2.json --- samples/charts/data-chart/timeline-axis-type2.json | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/charts/data-chart/timeline-axis-type2.json b/samples/charts/data-chart/timeline-axis-type2.json index 1098c27b5..206c68cf8 100644 --- a/samples/charts/data-chart/timeline-axis-type2.json +++ b/samples/charts/data-chart/timeline-axis-type2.json @@ -6,7 +6,6 @@ "name": "chart", "plotAreaMarginLeft": 100, "plotAreaMarginRight": 100, - "chartTitle": "Brexit Timeline", "axes": [ { "type": "CategoryXAxis", From 0ecb8d65369d01cd55c955c0330160352142875c Mon Sep 17 00:00:00 2001 From: mddifilippo89 Date: Thu, 6 Jul 2023 16:34:55 -0400 Subject: [PATCH 8/8] Update timeline-axis-type2.json --- samples/charts/data-chart/timeline-axis-type2.json | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/charts/data-chart/timeline-axis-type2.json b/samples/charts/data-chart/timeline-axis-type2.json index 206c68cf8..74b2acd31 100644 --- a/samples/charts/data-chart/timeline-axis-type2.json +++ b/samples/charts/data-chart/timeline-axis-type2.json @@ -23,7 +23,6 @@ { "type": "NumericYAxis", "name": "yAxis", - "title": "TWh", "labelLocation": "OutsideRight" } ],