mirror of
https://github.com/aurora-opensource/xviz.git
synced 2026-01-25 14:16:45 +00:00
The declarative UI plot component has a single "independentVariable" and multiple "dependentVariables". In many places we forgot the "s". That is not fixed with both the spec and the builder updated and tested.
11 lines
277 B
JSON
11 lines
277 B
JSON
{
|
|
"type": "plot",
|
|
"title": "Some Other Streams vs Some Stream",
|
|
"description": "The change in some streams as a function of the other one",
|
|
"independentVariable": "/some/stream",
|
|
"dependentVariables": [
|
|
"/some/other_stream",
|
|
"/some/second_other_stream"
|
|
]
|
|
}
|