Skip to content

Commit

Permalink
chore: add/edit plugin descriptions (apache#1202)
Browse files Browse the repository at this point in the history
  • Loading branch information
suddjian authored and zhaoyongjie committed Nov 24, 2021
1 parent 185d209 commit fc4549f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ import controlPanel from './controlPanel';

const metadata = new ChartMetadata({
category: t('Table'),
description: t(`Deprecated! Check out Pivot Table V2 instead!
description: t(`Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.
Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.`),
This chart is being deprecated and we recommend checking out Pivot Table V2 instead!`),
name: t('Pivot Table'),
tags: [t('Legacy')],
thumbnail,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
category: t('Table'),
name: t('Time-series Table'),
description: t('Compare multiple time series charts and related metrics quickly.'),
description: t(
'Compare multiple time series charts (as sparklines) and related metrics quickly. ',
),
tags: [
t('Advanced-Analytics'),
t('Multi-Variables'),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
category: t('Evolution'),
credits: ['http://nvd3.org'],
description: t('A line chart component where you can compare the % change over time'),
description: t(
'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')],
thumbnail,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
category: t('Evolution'),
credits: ['http://nvd3.org'],
description: '',
description: t(
'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')],
thumbnail,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default class EchartsRadarChartPlugin extends ChartPlugin<
category: t('Ranking'),
credits: ['https://echarts.apache.org'],
description: t(
'Visualize a parallel set of metrics across multiple groups. Each group is visualized as a new line and each new metric is represented as a new edge in the chart.',
'Visualize a parallel set of metrics across multiple groups. Each group is visualized using its own line of points and each metric is represented as an edge in the chart.',
),
name: t('Radar Chart'),
tags: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default class EchartsTimeseriesChartPlugin extends ChartPlugin {
category: t('Evolution'),
credits: ['https://echarts.apache.org'],
description: t(
'Swiss army knife of visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.',
'Swiss army knife for visualizing time series data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.',
),
exampleGallery: [{ url: example }],
supportedAnnotationTypes: [
Expand Down

0 comments on commit fc4549f

Please sign in to comment.