Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.

chore: add tags and description metadata #1236

Merged
merged 1 commit into from
Jul 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/legacy-plugin-chart-country-map/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const metadata = new ChartMetadata({
"Visualizes how a single metric varies across a country's principal subdivisions (states, provinces, etc) on a chloropleth map. Each subdivision's value is elevated when you hover over the corresponding geographic boundary.",
),
name: t('Country Map'),
tags: [t('2D'), t('Comparison'), t('Geo'), t('Range'), t('Report')],
tags: [t('2D'), t('Comparison'), t('Geo'), t('Range'), t('Report'), t('Stacked')],
thumbnail,
useLegacyApi: true,
});
Expand Down
3 changes: 2 additions & 1 deletion plugins/legacy-plugin-chart-paired-t-test/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ import controlPanel from './controlPanel';

const metadata = new ChartMetadata({
category: t('Correlation'),
description: '',
description:
'Table that visualizes paired t-tests, which are used to understand statistical differences between groups.',
name: t('Paired t-test Table'),
tags: [t('Legacy'), t('Statistical'), t('Tabular')],
thumbnail,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
category: t('Ranking'),
credits: ['https://syntagmatic.github.io/parallel-coordinates'],
description: '',
description:
'Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.',
name: t('Parallel Coordinates'),
tags: [t('Coordinates'), t('Directional'), t('Legacy'), t('Relational')],
thumbnail,
Expand Down
10 changes: 9 additions & 1 deletion plugins/legacy-plugin-chart-rose/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,15 @@ const metadata = new ChartMetadata({
'A polar coordinate chart where the circle is broken into wedges of equal angle, and the value represented by any wedge is illustrated by its area, rather than its radius or sweep angle.',
),
name: t('Nightingale Rose Chart'),
tags: [t('Legacy')],
tags: [
t('Legacy'),
t('Advanced-Analytics'),
t('Circular'),
t('Multi-Layers'),
t('Pattern'),
t('Time'),
t('Trend'),
],
thumbnail,
useLegacyApi: true,
});
Expand Down
2 changes: 1 addition & 1 deletion plugins/legacy-plugin-chart-time-table/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const metadata = new ChartMetadata({
t('Legacy'),
t('Percentages'),
t('Tabular'),
t('Text'),
t('Description'),
t('Trend'),
],
thumbnail,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const metadata = new ChartMetadata({
t('Percentages'),
t('Highly-used'),
t('Report'),
t('Text'),
t('Description'),
t('Trend'),
],
thumbnail,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const metadata = new ChartMetadata({
t('Percentages'),
t('Highly-used'),
t('Report'),
t('Text'),
t('Description'),
],
thumbnail,
useLegacyApi: true,
Expand Down
12 changes: 11 additions & 1 deletion plugins/legacy-preset-chart-nvd3/src/Compare/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,17 @@ const metadata = new ChartMetadata({
'Visualizes many different time-series objects in a single chart. This chart is being deprecated and we recommend using the Time-series Chart instead.',
),
name: t('Time-series Percent Change'),
tags: [t('Legacy'), t('Time'), t('nvd3')],
tags: [
t('Legacy'),
t('Time'),
t('nvd3'),
t('Advanced-Analytics'),
t('Comparison'),
t('Line'),
t('Percentages'),
t('Predictive'),
t('Trend'),
],
thumbnail,
useLegacyApi: true,
});
Expand Down
9 changes: 8 additions & 1 deletion plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ const metadata = new ChartMetadata({
'Visualize two different time series using the same x-axis time range. This chart is being deprecated and we recommend using the Mixed Timeseries Chart instead!',
),
name: t('Multiple Line Charts'),
tags: [t('Multi-Variables'), t('Legacy'), t('nvd3')],
tags: [
t('Multi-Variables'),
t('Legacy'),
t('nvd3'),
t('Comparison'),
t('Time'),
t('Multi-Layers'),
],
thumbnail,
useLegacyApi: true,
});
Expand Down
11 changes: 11 additions & 0 deletions plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,17 @@ export default class EchartsTimeseriesChartPlugin extends ChartPlugin {
],
name: t('Mixed timeseries chart'),
thumbnail,
tags: [
t('Advanced-Analytics'),
t('Aesthetic'),
t('ECharts'),
t('Experimental'),
t('Line'),
t('Multi-Variables'),
t('Predictive'),
t('Time'),
t('Transformable'),
],
}),
transformProps,
});
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugin-chart-table/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const metadata = new ChartMetadata({
t('Report'),
t('Sequential'),
t('Tabular'),
t('Text'),
t('Description'),
],
thumbnail,
});
Expand Down