You are here: PHP Products > ChartBuilder > Advanced Options

ChartBuilder for PHP/MySQL

Advanced Options

 

Date Formatting 

By default ChartBuilder will display day-level dates using MM-DD-YYYY. To change to DD-MM-YYYY display, adjust the following line in the Library.php file:

define("DATEFORMAT", 1);
to
define("DATEFORMAT", 2);
Disable Edits and Creating New Charts

In cases where you do not want users to be able to edit or create new charts, you can set the constant in the Library.php:

define("DisableEdits", 0);
to
define("DisableEdits", 1);