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.