Hi,
I'm trying to use the transform option in the dataset object, but have some issues with that.
It seems that if the dataset property isn't an object, but an array, which is required to use transform, the dataset.source is not filled by REI.
I haven't found the options object having the dataset as an array in the demo applications either.
This is the default:
"dataset": {
"source": [
"filled by app"
],
"sourceHeader": false
},
...
For any other configuration, the Echarts docs use it like this:
"dataset": [
{
"source": [
"filled by app"
],
"sourceHeader": false
},
{
"transform": {
...
}
}
],
...
Even in the purest form, this doesn't work:
"dataset": [
{
"source": [
"filled by app"
],
"sourceHeader": false
}
],
...
Could you help me with that?