Kendo UI ASP.Net饼图爆炸部分

时间:2012-12-06 21:25:48

标签: asp.net-mvc vb.net kendo-ui

我正在寻找带有爆炸部分的饼图的C#或VB Razor语法示例。我没有约束个别领域,我正在使用类似......

.Series(Sub(series)
      series.Pie(Function(model) model.Id, Function(model) model.PriorityName).Overlay(ChartPieSeriesOverlay.None)
End Sub) _

1 个答案:

答案 0 :(得分:0)

通过Telerik的支持演示和支持,我已经解决了这个问题。希望有一天这会帮助某人。我向我的ViewModel添加了另一个参数,如果我希望图表的一部分爆炸,它只传递一个布尔值。然后我将它传递给下面的代码作为Model.Explosion。

    @(Html.Kendo().Chart(Of Core.UI.PieChartViewModel) _
        .Name("Chart_OpenItemsByPM") _
        .ChartArea(Function(c) c.Background("#fff")) _
        .HtmlAttributes(New With {.Style = "height:280px;width:90%;margin:0px auto;"}) _
        .Legend(Function(legend) legend.Position(ChartLegendPosition.Bottom)) _
        .DataSource(Function(ds) ds.Read(Function(r) r.Action("Chart_OpenItemsByPM", "Dashboard"))) _
        .Series(Sub(series)
                        series.Pie(Function(model) model.Id, Function(model) model.Priority

Name, Nothing, Function(model) model.Explosion).Overlay(ChartPieSeriesOverlay.None)
                    End Sub) _
            .SeriesColors("#c72e15", "#c78215", "#c7c115", "#156dc7") _
            .Tooltip(Function(tooltip) tooltip.Visible(True).Format("{0} Tickets"))
        )