This question is locked. New answers and comments are not allowed.
Hi,
I'm working with a progrmatically radchart.
The problem i'm facing is how to set the color for each datapoint on the Dataseries?
Is it possible to, programatically, add a different color to each datapoint?
InvokeOperation<Dictionary<
string
,
int
>> MonthFamily = dbcontext.GetTestCaseResultsByFamilyByDay(day, month, year);
foreach
(var monthFamily
in
MonthFamily.Value)
{
testsbyfamily.Add(
new
DataPoint(monthFamily.Key.TrimEnd(), monthFamily.Value) { LegendLabel = monthFamily.Key.TrimEnd() });
}
Thanks,