This question is locked. New answers and comments are not allowed.
Hello,
I'm using a column chart (code sample below). Category values appear vertically and texts overlap.
I want to make category values written vertically. Is there a way to do this ?
I'm using a column chart (code sample below). Category values appear vertically and texts overlap.
I want to make category values written vertically. Is there a way to do this ?
Html.Telerik().Chart() .Name("chart") //.Title(t => t.Text("Statistics")) .Series(s => { s.Column(new int[] {Model.UserEntityCounts.MRCount ?? 0 , Model.UserEntityCounts.POCount ?? 0 , Model.UserEntityCounts.MRApprovalCount ?? 0 , Model.UserEntityCounts.POApprovalCount ?? 0 , Model.UserEntityCounts.ShipmentCount ?? 0 } ); }) .CategoryAxis(a => a.Categories(new string[] {"Category Text 1", "Category Text 2", "Category Text 3", "Category Text 4", "Category Text 5"})) .HtmlAttributes(new { style = "height: 300px;" })