BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
I have a chart made with 10 line series, those 10 line series have different value for the X & Y axis.The problem is that once the chart is built I can only see the X value of the first series.
For Example First series is having 4 values for X- Axis and second series is having 2 values for X- Axis and like that there will be different X- Axis Values for different Series. but from second series onwards its showing only first series X-Axis values only.
I want to draw Line chart with respective of that particular series values.
Hi Dorababu,
Thanks for using Syncfusion products.
We are able to achieve your requirement by using Muliple axes support. This support can be achieved by XAxis and YAxis properties in SFSeries. The below code snippet shows how to define the Mulitple axes.
CodeSnippet:
SFLineSeries series = new SFLineSeries ();
series.Label = new NSString ("Series1");
SFCategoryAxis xAxis = new SFCategoryAxis ();
xAxis.Title.Text = new NSString ("Series1");
series.XAxis = xAxis;
return series;
We have prepared a sample based on requirement. You can download the sample from the following location.
Sample: MultiLineSeries
Please let us know, if you need any further assistance on this.
Regards,
Manivannan.E
Hi Dorababu,
We are able to achieve your requirement by using SFDateTimeAxis. Each series data has been displayed with respective to its date in same X Axis.
We have prepared a sample based on requirement. You can download the sample from the following location.
Sample: CustomXAxis
Please let us know, if you need any further assistance on this.
Regards,
Manivannan.E
Hi Dorababu,
Thanks for the update.
Please let us know if you have any query.
Regards,
Manivannan.E
Synchronizing chart areas allows multiple charts to share a common primary axis while maintaining a
unique secondary axis for each chart. This feature is useful when comparing two sets of data that share
a common measurement.
I have attached the image for your reference.
We are about to purchase your charting component for xamarin.But we need this info to decide whether to go ahead with Syncfusion