You almost had it. You have to set the stroke
at the top-level of the LineSeries definition (see JSON tab in the docs):
"series": [{
"type": "LineSeries",
"stroke": "#567890",
// ...
},
// ...
]
JSON values line up very closely to the declarative syntax, hierarchy-wise. You can find more full JSON examples in the github repo.
CLICK HERE to find out more related problems solutions.