1<?php
2
3$conf['margin'] = 70;
4$conf['txtsize'] = 15;
5$conf['titlesize'] = 20;
6$conf['linespacing'] = 30;  //note:  MUST be bigger than txtsize
7$conf['colspacing'] = 120;
8$conf['strokewidth'] = 1.5; //for arrows and breaks
9$conf['strokecolor'] = "#000";
10$conf['txtcolor'] = "#000";
11$conf['bgr'] = "#FFF";
12
13$conf['cols_minlen'] = 80;
14$conf['cols_height'] = 30;
15$conf['cols_rectradius'] = 0;
16$conf['cols_fill'] = "#FFF";
17$conf['cols_txtcolor'] = "#000";
18
19$conf['note_margin'] = 8;
20$conf['note_rectradius'] = 5;
21$conf['note_fill'] = "180-#FFFFCC-#FFFFFF";
22$conf['note_align'] = "center";
23
24$conf['tooltip_txtcolor'] = '#000';
25$conf['tooltip_txtsize'] = 12;
26$conf['tooltip_border'] = '#FFFF99';
27$conf['tooltip_background'] = '#FFFF99';
28
29
30
31/*
32note:
33	{
34		margin:8,
35		rectradius:5,
36		fill:"180-#FFFFCC-#FFFFFF",
37		align:"center"
38
39*/
40
41
42
43