blob: 205212d9132f7749530dc0f3eb888a7cd65b3274 [file] [log] [blame]
import React from 'react';
import { SuperChart } from '@superset-ui/core';
import dummyDatasource from '../../../../../shared/dummyDatasource';
export const noData = () => (
<SuperChart
chartType="pie"
width={400}
height={400}
datasource={dummyDatasource}
queriesData={[{ data: [] }]}
formData={{
colorScheme: 'd3Category10',
donut: false,
labelsOutside: true,
numberFormat: '.3s',
pieLabelType: 'key',
showLabels: true,
showLegend: true,
vizType: 'pie',
}}
/>
);