Hi jqChart deverlopers,
let's say i have a basic column charts, the legend texts are too long, is it possible to force a particular legend text to start in the second line?
For instance,
.Legend(Legend => Legend.Visible(true)
.Title("Legend Title")
.AllowHideSeries(true)
.Border(b => b.LineWidth(1))
.Location(LegendLocation.Bottom)
.Font("12px Verdana")
.CustomItems(item =>
{
item.Add(" = Series A", System.Drawing.ColorTranslator.FromHtml("#445f9b"));
item.Add(" = Series B", System.Drawing.ColorTranslator.FromHtml("#fa650c"));
item.Add(" = Series C", System.Drawing.ColorTranslator.FromHtml("#000000"));
item.Add(" = Series D", System.Drawing.ColorTranslator.FromHtml("#333333")); // can I force this series D to be display as a new line below Series A???????
})
)
Thanks,
Keith