chore(viz): rename v1 and v2 charts (#22369)

This commit is contained in:
Ville Brofeldt
2022-12-09 22:51:37 +02:00
committed by GitHub
parent 3b45ad8b97
commit 012d1300c1
13 changed files with 17 additions and 21 deletions

View File

@@ -68,7 +68,7 @@ export default class EchartsAreaChartPlugin extends ChartPlugin<
AnnotationType.Timeseries,
],
name: hasGenericChartAxes
? t('Area Chart v2')
? t('Area Chart')
: t('Time-series Area Chart'),
tags: [
t('ECharts'),

View File

@@ -75,9 +75,7 @@ export default class EchartsTimeseriesBarChartPlugin extends ChartPlugin<
AnnotationType.Interval,
AnnotationType.Timeseries,
],
name: hasGenericChartAxes
? t('Bar Chart v2')
: t('Time-series Bar Chart v2'),
name: hasGenericChartAxes ? t('Bar Chart') : t('Time-series Bar Chart'),
tags: [
t('ECharts'),
t('Predictive'),

View File

@@ -73,7 +73,7 @@ export default class EchartsTimeseriesLineChartPlugin extends ChartPlugin<
AnnotationType.Timeseries,
],
name: hasGenericChartAxes
? t('Line Chart v2')
? t('Line Chart')
: t('Time-series Line Chart'),
tags: [
t('ECharts'),

View File

@@ -53,7 +53,7 @@ export default class EchartsTreemapChartPlugin extends ChartPlugin<
'Show hierarchical relationships of data, with with the value represented by area, showing proportion and contribution to the whole.',
),
exampleGallery: [{ url: example1 }, { url: example2 }],
name: t('Treemap v2'),
name: t('Treemap'),
tags: [
t('Aesthetic'),
t('Categorical'),