We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ad7de9 commit fcaed96Copy full SHA for fcaed96
frontend/src/app/types/Chart.d.ts
@@ -16,6 +16,8 @@
16
* limitations under the License.
17
*/
18
19
+import ChartDataSetDTO from 'app/types/ChartDataSet';
20
+
21
export type ChartStatus =
22
| 'init'
23
| 'depsLoaded'
@@ -117,7 +119,7 @@ export interface IChartLifecycle {
117
119
export interface IChart extends IChartLifecycle {
118
120
meta: ChartMetadata;
121
config?: ChartConfig;
- dataset?: ChartDataset;
122
+ dataset?: ChartDataSetDTO;
123
dependency: string[];
124
isISOContainer: boolean | string;
125
useIFrame?: boolean;
0 commit comments