Thanks Rachel for your reply. I have changed to using a sfchart with a spline type allowing me multiple series. One question I do have is, why when using range padding numericalpadding additional does it always seem to pad more at the top than at the bottom. I would like to see the series in the middle of the range. Is that possible?
<chart:SfChart.SecondaryAxis>
<chart:NumericalAxis PlotOffset="30">
</chart:NumericalAxis>
</chart:SfChart.SecondaryAxis> |
chart.SecondaryAxis = new NumericalAxis()
{
PlotOffset = 30
}; |
<chart:SfChart.SecondaryAxis>
<chart:NumericalAxis PlotOffset="30">
</chart:NumericalAxis>
</chart:SfChart.SecondaryAxis>
|
chart.SecondaryAxis = new NumericalAxis()
{
PlotOffset = 30
};
|