I have this *mostly* working but I'm having trouble converting from the UI version.
I *was* using this.
I've now switched to doing it from the code behind, but I'm having trouble using the ClientTemplate Feature, as well as the Kendo.
I *was* using this.
<telerik:RadHtmlChart runat="server" ID="RiskLevelsChart" Height="400px" Width="400px" Transitions="true" RenderMode="Lightweight" Skin="Forest"> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <ChartTitle> <Appearance Align="Center" BackgroundColor="White" Position="Top"></Appearance> </ChartTitle> <Legend> <Appearance BackgroundColor="White" Position="Right" Visible="true"></Appearance> </Legend> <PlotArea> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <Series> <telerik:PieSeries StartAngle="90" dataFieldY="RiskLevelCount" NameField="RiskLevelName" Name="RiskLevelName" > <LabelsAppearance Position="Circle" DataFormatString="{0} %" DataField="RiskLevelName" ClientTemplate="#=dataItem.RiskLevelName# (#=dataItem.RiskLevelCount#)"> </LabelsAppearance> <TooltipsAppearance ClientTemplate=" #=kendo.format(\'{0:P0}\', percentage)# " Visible="true" /> </telerik:PieSeries> </Series> </PlotArea></telerik:RadHtmlChart>I've now switched to doing it from the code behind, but I'm having trouble using the ClientTemplate Feature, as well as the Kendo.
<telerik:RadHtmlChart runat="server" ID="RiskLevelsChart" Height="400px" Width="400px" Transitions="true" RenderMode="Lightweight" Skin="Forest"> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <ChartTitle> <Appearance Align="Center" BackgroundColor="White" Position="Top"></Appearance> </ChartTitle> <Legend> <Appearance BackgroundColor="White" Position="Right" Visible="true"></Appearance> </Legend> <PlotArea> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance><%-- <Series> <telerik:PieSeries StartAngle="90" dataFieldY="RiskLevelCount" NameField="RiskLevelName" Name="RiskLevelName" > <LabelsAppearance Position="Circle" DataFormatString="{0} %" DataField="RiskLevelName" ClientTemplate="#=dataItem.RiskLevelName# (#=dataItem.RiskLevelCount#)"> </LabelsAppearance> <TooltipsAppearance ClientTemplate=" #=kendo.format(\'{0:P0}\', percentage)# " Visible="true" /> </telerik:PieSeries> </Series>--%> </PlotArea> </telerik:RadHtmlChart>Dim query = From r In AssessmentDim HighQuery = Assessment.Where(Function(x) x.RiskLevel = 3).CountDim MediumQuery = Assessment.Where(Function(x) x.RiskLevel = 2).CountDim LowQuery = Assessment.Where(Function(x) x.RiskLevel = 1).CountDim risklevels As New List(Of RiskLevel)()risklevels.Add(New RiskLevel(Master.GetTranslation("Low").ToString, LowQuery, System.Drawing.ColorTranslator.FromHtml("#9BFF00")))risklevels.Add(New RiskLevel(Master.GetTranslation("Medium").ToString, MediumQuery, System.Drawing.ColorTranslator.FromHtml("#FFE300")))risklevels.Add(New RiskLevel(Master.GetTranslation("High").ToString, HighQuery, System.Drawing.ColorTranslator.FromHtml("#FF6300")))RiskLevelsChart.ChartTitle.Text = Master.GetTranslation("RiskLevels").ToStringDim chartData As New PieSerieschartData.StartAngle = "90"chartData.LabelsAppearance.Position = HtmlChart.PieLabelsPosition.CirclechartData.LabelsAppearance.DataFormatString = "{0}"chartData.TooltipsAppearance.DataFormatString = "{0} %"For Each value As RiskLevel In risklevels Dim item As New SeriesItem item.Name = value.RiskLevelName item.YValue = value.RiskLevelCount item.BackgroundColor = value.RiskLevelColor chartData.Items.Add(item)NextRiskLevelsChart.PlotArea.Series.Add(chartData)