This is a migrated thread and some comments may be shown as answers.

Zooming in HTML Kendo Chart

1 Answer 61 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Ritika
Top achievements
Rank 1
Ritika asked on 13 Sep 2016, 01:56 PM

Hi,

I am not able to add the zoom property to my already existing Kendo Chart using HTML.

Its not accepting the zoom attribute and I am using kendo version v2015.1.408. Kindly Help me with the solution

Please find the code as below:

<td>

<%= Html.Kendo().Chart<prt.web.models.qualityovertimeviewmodel>()

.Name("BarGraphCold")

.Series(series => { series.Column(model => model.ColdGerm).Color("#1CAAD9"); })

.CategoryAxis(axis => axis .Categories(model => model.Label )

.MajorGridLines(lines => lines.Visible(false)) .Line(line => line.Visible(true))

.Labels(labels => labels.Rotation(-30)) ) .ValueAxis(axis => axis.Numeric() .MajorGridLines(lines => lines.Visible(false)) .Max(100) .Min(0) )

.Legend(legend => legend .Position(ChartLegendPosition.Bottom))

.Tooltip(true) .DataSource(dataSource => dataSource .Read(read => read.Action("GetBarChartData", "Visualize")) ) %>

</prt.web.models.qualityovertimeviewmodel></td>

1 Answer, 1 is accepted

Sort by
0
Danail Vasilev
Telerik team
answered on 15 Sep 2016, 09:39 AM
Hello Ritika,

I would suggest that you upgrade to the latest Kendo UI version - 2016.3.914., where the wrapper properties are exposed.

Regards,
Danail Vasilev
Telerik by Progress
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
General Discussions
Asked by
Ritika
Top achievements
Rank 1
Answers by
Danail Vasilev
Telerik team
Share this question
or