Type Alias EChartsSeriesType
EChartsSeriesType:
| "bar"
| "line"
| "scatter"
| "pie"
| "funnel"
| "gauge"
| "heatmap"
| "candlestick"
| "treemap"
| "sunburst"
| "tree"
| "sankey"
| "graph"
| "pictorialBar"
| "themeRiver"
| "parallel"
| "radar"
| "boxplot"
The series types this adapter reads.
Three are the cartesian ones (tier 1 of xability/maidr#1195), three carry one magnitude per named thing (tier 2a), two hand over a set of magnitudes already computed (tier 2b), five carry a hierarchy or a graph (tier 3),
pictorialBaris a bar wearing a symbol,themeRiver,parallelandradarown the chart but are read as a set of series, andboxplothands over a five-number summary. Two of them are read without an outline, whichgrid.tsrecords. A type outside this union is refused by name, so gaining a reading later is a decision rather than an accident.Kept in step with
READinconverters.ts, which is what actually decides -- this type is the public statement of it, andtest/adapters/echarts/cartesian.test.tsfails if the two stop agreeing.