Is it possible to create a column/line chart with multiple series like the legacy image(1st image) below? This is 3 quarters of data for two series, Responses & Average Ratings. I assign my responses data to column data source and my line data to line data source, but it looks like the second graph. Any help would be greatly appreciated.
NumericTimeDataPoint can only be used with NumericTimeSeries, which is a series that has a time scale along the x axis. Such series are mostly used for displaying LineSeries, and have no defined behavior for ColumnSeries. If you want datetime values on your x axis, I suggest using a NumericSeries with NumericDataPoints and display time as a string on the x axis.
Hi ,
Your sample is working fine with NurmericSeries , but the column does not show up when I use NumericTimeDataPoint, any idea ?
Thanks
Nevermind, I got it. I didn't set the yAxisColumn and yAxisLine RangeMax and Range Min and the RangeType to Custom.
Looking at the last image in the post, my ranges are 4 to six on the y-axis. I've set the min/max on the y axis and set it to be zero aligned, however, it stays at min 4 and max 6 which makes my 3rd qtr value of 4 look like zero. Is there another property i'm missing? I've looked at my other charts where I've set min/max and they seem to be okay? Thanks
You also have to create a composite legend instead of using the default one.
CompositeLegend legend = new CompositeLegend();chart.CompositeChart.Legends.add(legend);legend.ChartLayers.add(yourChartLayers);
You can then set legend.Bounds and have the legend appear anywhere on the chart.