Curve – PHP Charts & Graphs https://phpchart.com Making charts in PHP is simple again. Wed, 19 Jul 2023 03:18:27 +0000 en-US hourly 1 https://wordpress.org/?v=5.8.13 Curved Line https://phpchart.com/examples/curved-line/ https://phpchart.com/examples/curved-line/#respond Mon, 23 Jun 2014 05:25:39 +0000 http://phpchart.org/?p=1112 Curved line can be easily achieved with rendererOptions “smooth” property. When it is set to true, it will display a smooth curved line between each points instead of straight lines. 123$pc = new C_PhpChartX(array(array(11, 9, 5, 12, 14)),'basic_chart'); $pc->set_series_default(array('rendererOptions'=> array('smooth'=>true))); $pc->draw(); Live demo!

The post Curved Line appeared first on PHP Charts & Graphs.

]]>
curved-line

Curved line can be easily achieved with rendererOptions “smooth” property. When it is set to true, it will display a smooth curved line between each points instead of straight lines.

1
2
3
$pc = new C_PhpChartX(array(array(11, 9, 5, 12, 14)),'basic_chart');
$pc->set_series_default(array('rendererOptions'=> array('smooth'=>true)));
$pc->draw();

Live demo!

The post Curved Line appeared first on PHP Charts & Graphs.

]]>
https://phpchart.com/examples/curved-line/feed/ 0