This question is locked. New answers and comments are not allowed.
Dear Teleriks,
The chart legend font is not applied , here is an example :
The chart legend font is not applied , here is an example :
@(Html.Telerik().Chart(Model).Name("priceTrendChart").Title(title => title.Text("Title...").Font("Tahoma")).ChartArea(area=>area.Border(1,"black")) .Legend(legend => legend.Font("180px Arial, sans-serif").Border(2, "red")) .SeriesDefaults(series => { series.Line().Labels(true); }).Series(series =>{ series.Line(o => o.Price).Name("Legend Title").Color("red");}) .CategoryAxis(axis => axis.Categories(s => s.InquiryDateString)) .HtmlAttributes(new { style = "width: 600px; height: 400px;"}) )