Hello dear support.
I have the follow strange issue:
- The chart is working on the desktop browsers, but when I try on mobile devices it goes blank without series.
There is a chance that I am doing something wrong, so I will describe what is the case :
-I have a razor compoennt inside of which I have SfStockChart with 3 StockChartSeries which having their own StockChartAxis.
each StockChartSerie is bound with DataSource to a List of class with X and Y (only, no other properties, The X axis is DateTime axis.
The data is requesting with a button.
So - when I receive the data - I am refilling these datasource lists, and on the end of the procedure I am calling
chart.Series[ 0 ].Refresh();
chart.Series[ 1 ].Refresh();
chart.Series[ 2 ].Refresh();
in order to refresh the series.
This seems to be working on desktop, but on Android Chrome - It just stay blank like there is no series.