I've got a chart defined as:-
What I need to do is add a boostrap badge to the chart title, so each one of the charts has an easily idfentifiable reference number.
E.g:-
How can I put this markup into the title? Any attempt to add spans etc., result in javascript errors when the page is run.
Thanks
@(Html.Kendo().Chart<WT_Portal_PMS2.Models.OpenClockSummary>() .Name("chart") .Title("Open Clocks by Weeks Waiting") .Theme("bootstrap") .Legend(legend => legend .Position(ChartLegendPosition.Top) .Visible(false) ) .DataSource(ds => ds.Read(read => read.Action("_BarChartp", "Summary") .Data("specFilter") )) .Series(series => { series.Column(model => model.Clocks, model => model.barColour); }) .ChartArea(area => area .Height(350) .Background("transparent")) .CategoryAxis(axis => axis .Categories(model => model.CurrentWaitingBand) .Labels(labels => labels.Rotation(-90)) .MajorGridLines(lines => lines.Visible(false)) ) .ValueAxis(axis => axis.Numeric() .Labels(labels => labels.Format("{0:N0}")) .Line(line => line.Visible(false)) ) .Tooltip(tooltip => tooltip .Visible(true) .Format("{0:N0}") ) )What I need to do is add a boostrap badge to the chart title, so each one of the charts has an easily idfentifiable reference number.
E.g:-
<span>Open Clocks by Weeks Waiting</span> <span class="pull-right badge">C1</span>How can I put this markup into the title? Any attempt to add spans etc., result in javascript errors when the page is run.
Thanks