databar Archives | phpGrid - PHP Datagrid Create PHP grids in minutes, not hours. Sat, 11 Mar 2017 13:57:54 +0000 en-US hourly 1 CodeProjecthttps://wordpress.org/?v=7.0.3 129966043 In-cell Data Bar * https://phpgrid.com/example/in-cell-data-bar/ Sat, 14 Jan 2012 20:04:14 +0000 http://phpgrid.com/?p=1870 Bar chart is a great way to visualize numeric data. phpGrid now supports bar chart natively without 3rd party plugin using set_databar() method. You can have multiple data bar in a datagrid. For complex data visualization, we recommend PHP Chart. Please visit PHP Chart for live demo. 123456789101112$dg = new C_DataGrid("SELECT * FROM joborders", "jobNumber", […]

The post In-cell Data Bar * appeared first on phpGrid - PHP Datagrid.

]]>
databar_ss

Bar chart is a great way to visualize numeric data. phpGrid now supports bar chart natively without 3rd party plugin using set_databar() method. You can have multiple data bar in a datagrid.

For complex data visualization, we recommend PHP Chart. Please visit PHP Chart for live demo.

1
2
3
4
5
6
7
8
9
10
11
12
$dg = new C_DataGrid("SELECT * FROM joborders", "jobNumber", "joborders");
$dg -> set_col_title("jobNumber", "Job Number");
$dg -> set_col_title("jobDescription", "Description");
$dg -> set_col_title("status", "Status");              
$dg -> set_col_title("percentComplete", "Progress (%)");
$dg -> set_col_title("isClosed", "Closed");
 
$dg -> set_databar("percentComplete","blue");
$dg -> set_databar("jobNumber","blue");
$dg -> enable_edit("INLINE", "CRUD");
 
$dg -> display();

See Live Example!

The post In-cell Data Bar * appeared first on phpGrid - PHP Datagrid.

]]>
1870