I was wondering if it’s possible to get more advanced
formatting such as hollow (doughnut) points with an outline color (figure 1) or
even more advanced formatting like using gradient and bevel properties in Excel
(figure 2).
2 Answers, 1 is accepted
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 01 Nov 2018, 12:50 PM
Hello, Melissa,
It is possible to assign a specific shape for the ScatterSeries, e.g. DonutShape. Thus, you will obtain donuts data points. In addition, you can iterate the ScatterPointElements and customize the color and gradient style. You can find below a sample code snippet:
ScatterSeries scatterSeries = new ScatterSeries();
foreach (ScatterPointElement pe in scatterSeries.Children)
{
pe.GradientStyle = GradientStyles.Radial;
pe.BackColor = Color.Red;
pe.BackColor2 = Color.Yellow;
}
I hope this information helps. If you need any further assistance please don't hesitate to contact me.
Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers.Learn More.