Hi Syaiful,
Thanks for contacting Syncfuion Support.
1)Setting Row in Code behind
We can set the corresponding row for axis in SfChart, by using the SetRow Method of SfChart as like the below code snippet,
var spline = new SplineSeries();
NumericalAxis axis = new NumericalAxis();
axis.PlotOffset = 10;
SfChart.SetRow(axis, 1); |
2)Regarding PlotOffset,
While setting the PlotOffset property of axis, the additional space will be padded on both the side of axis. Please refer the below code snippet and corresponding output
<chart:SfChart >
<chart:SfChart.PrimaryAxis>
<chart:NumericalAxis PlotOffset="30"/>
</chart:SfChart.PrimaryAxis>
<chart:SfChart.SecondaryAxis>
<chart:NumericalAxis />
</chart:SfChart.SecondaryAxis>
</chart:SfChart> |
Regards,
Devi