I would like to know if it's possible to have more than a series, of different types, in the stockchart.
In particular, I'd like to have a chart like this one
where in the first pane, I have both a series of type 'Candle' and another series of type 'RangeArea'
With the 'RangeArea' that is drawn behind the candle series to not hide it.
Something like:
series: [
{
dataSource: window.chartData,
type: 'Candle', yAxisName: 'yAxis1'
},
{
type: 'RangeArea', marker: { visible : false },
name: 'India',
dataSource: series1,
xName: 'x', high: 'high', low: 'low', opacity: 0.4,
border: { width: 2 }
}]