You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Labels do not update after changing a Pie Charts data set
private IChartComponent PieDeploymentChart;
var deployment = _jiraFiltered.Select(x => x.IncidentDeployment).GroupBy(x => x).OrderByDescending(x => x.Count()).Select(x => new { type = x.Key.ToString(), value = x.Count() }).ToArray();
PieDeploymentChart.ChangeData(deployment, true);
Before:
After:
I have tried to use .Repaint as well with no luck.
The text was updated successfully, but these errors were encountered:
Labels do not update after changing a Pie Charts data set
private IChartComponent PieDeploymentChart;
var deployment = _jiraFiltered.Select(x => x.IncidentDeployment).GroupBy(x => x).OrderByDescending(x => x.Count()).Select(x => new { type = x.Key.ToString(), value = x.Count() }).ToArray();
PieDeploymentChart.ChangeData(deployment, true);
Before:
After:
I have tried to use .Repaint as well with no luck.
The text was updated successfully, but these errors were encountered: