Telerik MVC图表-绑定到JSON

时间:2018-10-11 00:00:36

标签: json telerik-mvc telerik-charting

如何将Telerik ASP.Net MVC图表(不是Kendo for jQuery版本)绑定到JSON?例如,我想将以下图表绑定(注意:该系列暂时只包含虚拟数据,但希望您能理解)返回JavaScript的JavaScript函数。我在查找如何使用Telerik ASP.Net MVC图表执行此操作的示例时遇到了麻烦。我确实使用Kendo UI for jQuery chart查找示例-但我没有使用它。

@(Html.Kendo().Chart()
.Name("GallonsPerMonth")
.Title("Total Gallons Per Month")
.Legend(legend => legend
    .Position(ChartLegendPosition.Top)
    .Visible(true)
)
.Theme("Bootstrap")
.ChartArea(chartArea => chartArea
    .Background("transparent")
    .Height(600)
)
.Series(series =>
{
    series.Column(new double[] { 825, 775, 875, 900, 925, 1111, 1200, 1175, 1100, 1000, 875, 800 }).Name("Estimated");
    series.Line(new double[] { 700, 795, 900, 850, 950, 905, 1175, 1100, 1000, 1050, 700, 650 }).Name("Actual").Color("red");

})
.CategoryAxis(axis => axis
    .Name("series-axis")
    .Line(line => line.Visible(false))
)
.CategoryAxis(axis => axis
    .Name("label-axis")
    .Categories("Jan", "Feb", "Mar", "Apr", "May", "Jun", "July", "Aug", "Sep", "Oct", "Nov", "Dec")
)
.ValueAxis(axis => axis//.Logarithmic()
    .Numeric()
    .Labels(labels => labels.Format("{0}"))

    // Move the label-axis all the way down the value axis
    .AxisCrossingValue(0, int.MinValue)
)
.Tooltip(tooltip => tooltip
    .Visible(true)
    .Format("{0}")
    .Template("#= series.name #: #= value #")
)

dsd

1 个答案:

答案 0 :(得分:0)

您可以使用不含系列数据的MVC帮助程序扩展来创建图表,因此在文档准备就绪时,可以使用JavaScript添加该图表。

<script>
    $(document).ready(function () {
        $.getJSON('your-url', function (data) {
            var chart = $("#GallonsPerMonth").data("kendoChart");
            var series = chart.options.series;
            // first series
            series[0].data = data;
            chart.redraw();
        });
    }
</script>
  

请注意,我正在将数据添加到“拳头系列”中。