MCPcopy
hub / github.com/TargetProcess/tauCharts / ChartSpec

Interface ChartSpec

types/index.d.ts:1–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1interface ChartSpec {
2 type: (
3 'bar' |
4 'horizontal-bar' |
5 'horizontal-stacked-bar' |
6 'line' |
7 'map' |
8 'parallel' |
9 'scatterplot' |
10 'stacked-area' |
11 'stacked-bar'
12 );
13 x?: string | string[];
14 y?: string | string[];
15 size?: string;
16 color?: string;
17 id?: string;
18 label?: string;
19 split?: string;
20 guide?: ChartGuide | ChartGuide[];
21 settings?: ChartSettings;
22 dimensions?: {
23 [field: string]: {
24 type: 'category' | 'measure' | 'order';
25 scale?: 'ordinal' | 'period' | 'time' | 'linear' | 'logarithmic';
26 order?: string[];
27 }
28 };
29 plugins?: PluginObject[];
30 data?: Object[];
31}
32
33interface ChartGuide {
34 x?: {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected