chore: adding missing examples in the gallery for several chart types (#22597)

This commit is contained in:
Yash Mehta 2023-01-05 15:13:32 +05:30 committed by GitHub
parent 01671b9d1b
commit 6e4d6e599b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
27 changed files with 27 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

View File

@ -18,6 +18,7 @@
*/
import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
import thumbnail from './images/thumbnail.png';
import example from './images/example.jpg';
import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
@ -26,6 +27,7 @@ const metadata = new ChartMetadata({
description: t(
'Compares the lengths of time different activities take in a shared timeline view.',
),
exampleGallery: [{ url: example }],
name: t('Event Flow'),
tags: [t('Legacy'), t('Progressive')],
thumbnail,

View File

@ -18,4 +18,5 @@
*/
declare module '*.png';
declare module '*.jpg';
declare module '@data-ui/event-flow';

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -19,6 +19,8 @@
import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
import transformProps from './transformProps';
import thumbnail from './images/thumbnail.png';
import example1 from './images/example1.jpg';
import example2 from './images/example2.jpg';
import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
@ -26,6 +28,7 @@ const metadata = new ChartMetadata({
description: t(
'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.',
),
exampleGallery: [{ url: example1 }, { url: example2 }],
name: t('Nightingale Rose Chart'),
tags: [
t('Legacy'),

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

View File

@ -19,6 +19,7 @@
import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
import transformProps from '../transformProps';
import thumbnail from './images/thumbnail.png';
import example from './images/example.jpg';
import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
@ -27,6 +28,7 @@ const metadata = new ChartMetadata({
description: t(
'Visualizes 2 metrics as line plots using the same x-axis. This chart is useful for comparing metrics across the same time range.',
),
exampleGallery: [{ url: example }],
name: t('Dual Line Chart'),
tags: [t('Legacy'), t('nvd3')],
thumbnail,

Binary file not shown.

After

Width:  |  Height:  |  Size: 218 KiB

View File

@ -19,6 +19,7 @@
import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
import transformProps from '../transformProps';
import thumbnail from './images/thumbnail.png';
import example from './images/example.jpg';
import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
@ -27,6 +28,7 @@ const metadata = new ChartMetadata({
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!',
),
exampleGallery: [{ url: example }],
name: t('Multiple Line Charts'),
tags: [
t('Multi-Variables'),

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -21,6 +21,7 @@ import buildQuery from './buildQuery';
import controlPanel from './controlPanel';
import transformProps from './transformProps';
import thumbnail from './images/thumbnail.png';
import example from './images/example.jpg';
import { EchartsFunnelChartProps, EchartsFunnelFormData } from './types';
export default class EchartsFunnelChartPlugin extends ChartPlugin<
@ -49,6 +50,7 @@ export default class EchartsFunnelChartPlugin extends ChartPlugin<
description: t(
'Showcases how a metric changes as the funnel progresses. This classic chart is useful for visualizing drop-off between stages in a pipeline or lifecycle.',
),
exampleGallery: [{ url: example }],
name: t('Funnel Chart'),
tags: [
t('Business'),

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -20,6 +20,8 @@ import { t, ChartMetadata, ChartPlugin, Behavior } from '@superset-ui/core';
import controlPanel from './controlPanel';
import transformProps from './transformProps';
import thumbnail from './images/thumbnail.png';
import example1 from './images/example1.jpg';
import example2 from './images/example2.jpg';
import buildQuery from './buildQuery';
import { EchartsGaugeChartProps, EchartsGaugeFormData } from './types';
@ -39,6 +41,7 @@ export default class EchartsGaugeChartPlugin extends ChartPlugin<
description: t(
'Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.',
),
exampleGallery: [{ url: example1 }, { url: example2 }],
name: t('Gauge Chart'),
tags: [
t('Multi-Variables'),

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@ -20,6 +20,7 @@ import { t, ChartMetadata, ChartPlugin, Behavior } from '@superset-ui/core';
import controlPanel from './controlPanel';
import transformProps from './transformProps';
import thumbnail from './images/thumbnail.png';
import example from './images/example.jpg';
import buildQuery from './buildQuery';
export default class EchartsGraphChartPlugin extends ChartPlugin {
@ -34,6 +35,7 @@ export default class EchartsGraphChartPlugin extends ChartPlugin {
description: t(
'Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.',
),
exampleGallery: [{ url: example }],
name: t('Graph Chart'),
tags: [
t('Aesthetic'),

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

@ -22,6 +22,8 @@ import buildQuery from './buildQuery';
import controlPanel from './controlPanel';
import transformProps from './transformProps';
import thumbnail from './images/thumbnail.png';
import example1 from './images/example1.jpg';
import example2 from './images/example2.jpg';
import { EchartsRadarChartProps, EchartsRadarFormData } from './types';
export default class EchartsRadarChartPlugin extends ChartPlugin<
@ -50,6 +52,7 @@ export default class EchartsRadarChartPlugin extends ChartPlugin<
description: t(
'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.',
),
exampleGallery: [{ url: example1 }, { url: example2 }],
name: t('Radar Chart'),
tags: [
t('Business'),

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 288 KiB

View File

@ -18,6 +18,8 @@
*/
import { ChartMetadata, ChartPlugin, t } from '@superset-ui/core';
import thumbnail from '../images/thumbnail.png';
import example1 from '../images/example1.jpg';
import example2 from '../images/example2.jpg';
import buildQuery from './buildQuery';
import controlPanel from './controlPanel';
import transformProps from './transformProps';
@ -38,6 +40,7 @@ export default class HandlebarsChartPlugin extends ChartPlugin {
description: t('Write a handlebars template to render the data'),
name: t('Handlebars'),
thumbnail,
exampleGallery: [{ url: example1 }, { url: example2 }],
});
super({

View File

@ -20,5 +20,5 @@ declare module '*.png' {
const value: any;
export default value;
}
declare module '*.jpg';
declare module 'just-handlebars-helpers';

View File

@ -19,6 +19,8 @@
import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core';
import transformProps from './transformProps';
import thumbnail from './images/thumbnail.png';
import example1 from './images/example1.jpg';
import example2 from './images/example2.jpg';
import controlPanel from './controlPanel';
const metadata = new ChartMetadata({
@ -28,6 +30,7 @@ const metadata = new ChartMetadata({
t(`Chart component that lets you add a custom filter UI in your dashboard. When added to dashboard, a filter box lets users specify specific values or ranges to filter charts by. The charts that each filter box is applied to can be fine tuned as well in the dashboard view.
Note that this plugin is being replaced with the new Filters feature that lives in the dashboard view itself. It's easier to use and has more capabilities!`),
exampleGallery: [{ url: example1 }, { url: example2 }],
thumbnail,
useLegacyApi: true,
});

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB