High performance rendering engine for a FlexChart control.
To enable WebGL rendering on a FlexChart control,
set renderEngine property of FlexChart to
an instance of the WebGLRenderEngine. For example:
import { FlexChart } from'@grapecity/wijmo.chart';
import { WebGLRenderEngine } from'@grapecity/wijmo.chart.webgl';
let flexChart = new FlexChart('#theGrid'); // create the chart
flexChart.renderEngine = new WebGLRenderEngine(); // set the render engine
High performance rendering engine for a FlexChart control.
To enable WebGL rendering on a FlexChart control, set renderEngine property of FlexChart to an instance of the WebGLRenderEngine. For example:
import { FlexChart } from '@grapecity/wijmo.chart'; import { WebGLRenderEngine } from '@grapecity/wijmo.chart.webgl'; let flexChart = new FlexChart('#theGrid'); // create the chart flexChart.renderEngine = new WebGLRenderEngine(); // set the render engine