Having trouble getting help?
Contact Support
Contact Support
Performance
8 Jun 20171 minute to read
- When there are large number of points to load, you can enable canvas rendering mode in chart. Canvas rendering is faster than SVG because it does not involve manipulating DOM elements as much as SVG rendering.
<ej-chart id="chartcontainer" [enableCanvasRendering]="true">
</ej-chart>
- Instead of enabling data markers and labels when there are large number of data points, you can use trackball and tooltip to view point information.
Lazy Loading
Lazy loading feature provides an effective way for loading data on demand by scrolling and viewing a smaller range of data from a larger collection.
this.axis = {
scrollbarSettings: {
// enable the scrollbar
visible: true,
// enable the resize option
canResize: true,
range: {
min: "2009/1/1",
max: "2014/1/1"
}
}
};
<ej-chart id="chartcontainer" [primaryXAxis]="axis">
</ej-chart>