This question is locked. New answers and comments are not allowed.
I have the following char
How to change HTML height depending on data count, or maybe it is possible to set series' height?
@(Html.Telerik().Chart<TestData>() .Name("chart").DataBinding(dataBinding => dataBinding.Ajax().Select("GetData", "Home")) .SeriesDefaults(series => series.Bar().Stack(true)) .Series(series => { series.Bar(s => s.Busy).Name("Busy").Color("#25A0DA"); series.Bar(s => s.Open).Name("Open"); }) .CategoryAxis(axis => axis.Categories(s => s.Name)) .ValueAxis(axis => axis.Numeric()) .Tooltip(tooltip => tooltip.Visible(true)) .Legend(legend => legend.Visible(false)) .HtmlAttributes(new { style = "width: 400px; height:200px" }))How to change HTML height depending on data count, or maybe it is possible to set series' height?