Hi Andrea,
Thanks for your update.
We have analyzed your query (“The Marker helper is not defined and gives me Compilation errors on using data source in the series”) and checked with simple sample using datasource and markers in the series. But we couldn’t reproduce the above reported issue and the sample is working fine. Please find the code snippet.
[CSHTML]
@(Html.EJ().Chart("chartContainer")
//...
.Series(sr =>
{
//Adding Candle series
sr
.Marker(mr => mr
.Visible(true)
)
.XName("XValue")
.High("High")
.Low("Low")
.Open("Open")
.Close("Close")
.DataSource(ViewBag.datasource)
.Type(SeriesType.Candle)
.Add();
})
)
So could you please share your code snippet or sample which
will be helpful on resolving the issue and provide you the solution.
Let us know if you have any other concerns on this.
Thanks,
Bharathiraja.