animate – PHP Charts & Graphs https://phpchart.com Making charts in PHP is simple again. Tue, 13 Dec 2011 01:20:31 +0000 en-US hourly 1 https://wordpress.org/?v=5.8.13 Enable Animation https://phpchart.com/examples/enabl-animation/ https://phpchart.com/examples/enabl-animation/#respond Fri, 25 Nov 2011 02:29:03 +0000 http://phpchart.net/?p=256 The render animation is now supported for the most renderer types. By default, animate is turned off. Simply call set_animate() method and pass true as the parameter value to enable animation. 1234$pc = new C_PhpChartX(array(array(11, 9, 5, 12, 14)),'basic_chart'); $pc->set_animate(true);$pc->set_title(array('text'=>'Basic Chart Animated')); $pc->draw(); Live demo

The post Enable Animation appeared first on PHP Charts & Graphs.

]]>
The render animation is now supported for the most renderer types. By default, animate is turned off. Simply call set_animate() method and pass true as the parameter value to enable animation.

1
2
3
4
$pc = new C_PhpChartX(array(array(11, 9, 5, 12, 14)),'basic_chart');
$pc->set_animate(true);
$pc->set_title(array('text'=>'Basic Chart Animated'));
$pc->draw();

Live demo

The post Enable Animation appeared first on PHP Charts & Graphs.

]]>
https://phpchart.com/examples/enabl-animation/feed/ 0