repaintChart()
This function will force the chart to repaint. All drawn objects will be updated.
Parameters
none
|
function takes no parameters
|
Usage
function main() {
...
...
if ( isLastBarOnChart() == true ) {
//force the chart to repaint
repaintChart();
}
}
|