I have VizFrame scatter chart and I need to add there some data represented by line. I was trying to do this by adding reference line (plotArea.referenceLine.line), but it looks like the input can be just one value for this property, so the reference line is always perpendicluar one the axis (please see example).
The data I would like to add as a line are saved under the "Line" name:
var oData = [
{
"Z": "A",
"X": 171.9,
"Y": 183,
"Line": 176.7
},
{
"Z": "B",
"X" : 144.3,
"Y": 158.6,
"Line": 163.3
},
//....and so on, more in the example
}];
Is there any way how to show line chart and scatter chart in one VizFrame?