Hello,
I'm pushing data to chart from signalr every 1-2s and it's working fine but for each new entry, Telerik adds a DOM at the end of the document (<div style="display: none;">...</div> which overtime can generate thousands of those divs. Is there a way to eliminate those or at least to remove not used ones (as I'm showing max 10 latest records in the chart).
Thanks
I'm pushing data to chart from signalr every 1-2s and it's working fine but for each new entry, Telerik adds a DOM at the end of the document (<div style="display: none;">...</div> which overtime can generate thousands of those divs. Is there a way to eliminate those or at least to remove not used ones (as I'm showing max 10 latest records in the chart).
Thanks
<TelerikChart Transitions="false">
<ChartTooltip Visible="true" />
<ChartLegend Visible="false" />
<ChartChartArea Background="transparent" />
<ChartSeriesItems>
<ChartSeries Type="ChartSeriesType.Line"
Name="Value"
Data="@Data"
Field="Value"
CategoryField="Time">
</ChartSeries>
</ChartSeriesItems>
</TelerikChart>