Hi i
I’m using the
sample code in the link below to add/remove series. Works great but how do I add multiple
axes in this case? I’ve tried adding YAxisName but that gives an error. Any sample code would
be appreciated.
https://blazor.syncfusion.com/documentation/chart/how-to/add-remove/
/Stefan
|
<SfChart Axes="@axes">
</SfChart>
@code{
List<ChartAxis> axes = new List<ChartAxis> {
new ChartAxis{ Name = "yAxis1" },
new ChartAxis{ Name = "yAxis2", OpposedPosition = true }
};
} |
Hi again,
Setting Maximum
and Minimum values on the axis does not work.
Adding DataSource
to Chartseries does not work. The original data source is used not y1 as specified.
See yellow marked in attached
image.
Regards,
Stefan