Hi Matheu,
Thanks for using syncfusion product. We have analyzed your query and we suggest to use SplineArea series to show a normal distribution graph.
|
Code Snippet: //….. .Series(sr => { sr.Border(st => st .Type(SeriesType.SplineArea).Add(); }) ….// |
|
We have prepared a sample based on this.
Please find the sample under the following location,
Sample Location: http://www.syncfusion.com/downloads/support/forum/121953/ze/Normal_Distribution-1246193035
Please let us know if you have any concern.
Regards,
Akbar Basha KM.
Hi Matheu,
Thanks for your update.You can achieve this requirement using StripLine property as follows,
|
Code Snippet: // ...
//Initializing Primary X Axis .PrimaryXAxis(pr => pr
//Initializing StripLine in X Axis .StripLine(str => { str.Start(0.93) .End(1.07) .Text("Mean") .Visible(true) .TextAlignment(StriplineTextAlignment.MiddleCenter) .Color("#0D97D4") .Font(ft => ft.Size("13px").Color("Black")) .ZIndex(ChartZIndex.Over).Add(); }) // ...
) // ...
|
|
Output Image: |
We have modified the previous sample based on this. Please find the sample under the following
Sample Location : Normal_Distribution
We have also attached the UG link. It will be helpful to create chart and chart functionalities,
Link : http://help.syncfusion.com/js/chart/
Regards,
Akbar Basha KM.