Welcome to the WinForms feedback portal. We’re happy you’re here! If you have feedback on how to improve the WinForms, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
HI,
I am using the chart to publish data from a background task into the userinterface.
Randomly the chart displays a red cross without any error message.
Do you have any idea how to diagnise this?
This happens randomly every few hours to days.
//Chart Init Code
dataSeriesModel = new CategoryAxisDataBindModel(_jobSlot.Statistics.PickablePartsOnPlatform_Data);
dataSeriesModel.CategoryName = "PartsOnPlatform";
dataSeriesModel.YNames = new string[] { "PickableParts_Average" };
chartSeries = new ChartSeries("Teile auf Plattform");
chartSeries.CategoryModel = dataSeriesModel;
chartSeries.Style.DisplayText = true;
chartSeries.Style.TextOrientation = ChartTextOrientation.Down;
chartSeries.Style.TextColor = Color.White;
chartPartsOnPlatform.Series.Clear();
chartPartsOnPlatform.Series.Add(chartSeries);
//Data Source -> Binding List
public BindingList
{
get => _pickablePartsOnPlatformData;
}
BindingList