(
source: Source | OptionSourceData,
opt?: PrepareSeriesDataSchemaParams
)
| 79 | * For outside usage compat (like echarts-gl are using it). |
| 80 | */ |
| 81 | export function createDimensions( |
| 82 | source: Source | OptionSourceData, |
| 83 | opt?: PrepareSeriesDataSchemaParams |
| 84 | ): SeriesDimensionDefine[] { |
| 85 | return prepareSeriesDataSchema(source, opt).dimensions; |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * This method builds the relationship between: |
searching dependent graphs…