I'm a little confused as to why the little color box next to the series in the legend are not appearing. I've used other types of charts, but I'm attempting my first Pie Chart and I'm at a loss as to why it's not showing as the legend is something that I basically "set and forget" so to speak. See attached image. Code as followed.
<telerik:RadHtmlChart runat="server" ID="PieChart1" Width="1160" Height="500px" Transitions="true"> <Appearance> <FillStyle BackgroundColor="White"></FillStyle> </Appearance> <ChartTitle Text=""> <Appearance Align="Center" BackgroundColor="White" Position="Top" /> </ChartTitle> <Legend> <Appearance BackgroundColor="White" Position="Right" Visible="true" /> </Legend> <PlotArea> <Appearance> <FillStyle BackgroundColor="White" /> </Appearance> <Series> <telerik:PieSeries DataFieldY="Count" NameField="Product"> <LabelsAppearance ClientTemplate="#=dataItem.Product# #=dataItem.Percentage#%"/> </telerik:PieSeries> </Series> </PlotArea></telerik:RadHtmlChart>DataTable dt = GetData();PieChart1.DataSource = dt;PieChart1.DataBind();