如何生成此图表剑道?

时间:2017-04-03 08:54:32

标签: jquery charts kendo-ui kendo-asp.net-mvc

enter image description here

如何在剑道中生成此类图表?我尝试使用" Kendo Radial Gauge" 生成图表..但我没有得到我的预期

我试过这个数据

     @(Html.Kendo().RadialGauge()
          .Name("gauge")
          .Pointers(pointers =>
          {
              pointers.Add().Value(10).Color("#c20000").Cap(c => c.Size(0.15));
              pointers.Add().Value(70).Color("#ff7a00").Cap(c => c.Size(0.1));
              pointers.Add().Value(140).Color("#ffc700");
          })
          .Scale(scale => scale
                 .MinorUnit(5)
                 .StartAngle(-30)
                 .EndAngle(210)
                 .Max(180)
          )
)

径向厚度输出

enter image description here

0 个答案:

没有答案