---- GRAPH SETTINGS ---- t_Graph_Default = {}; t_Graph_Default.Markers = {}; t_Graph_Default.Markers.b_Graph_ShowMarkers = true; -- show markers; false = no markers t_Graph_Default.Markers.n_Graph_MarkerType = 1; -- 1 = rect; 2 = ellipse t_Graph_Default.Markers.n_Graph_MarkerSize_W = 8; -- width t_Graph_Default.Markers.n_Graph_MarkerSize_H = 8; -- height t_Graph_Default.Markers.n_Graph_MarkerBorderType = 0; -- 0 = solid; 1 = invisible (no border) t_Graph_Default.Markers.n_Graph_MarkerBorderWidth = 1; -- 1-pixel border t_Graph_Default.Markers.n_Graph_MarkerBorderColor = 0; -- black border t_Graph_Default.Markers.n_Graph_MarkerFillColor = 255; -- red fill marker t_Graph_Default.Lines = {}; t_Graph_Default.Lines.b_Graph_ShowLines = true; -- show lines; false = no lines t_Graph_Default.Lines.n_Graph_LineType = 0; -- 0 = solid; 1 = dash; 2 = dot; 3 = dash-dot; 4 = dash-dot-dot t_Graph_Default.Lines.n_Graph_LineWidth = 2; -- 2-pixel lines t_Graph_Default.Lines.n_Graph_LineColor = 0; -- black lines t_Graph_Default.Field = {}; t_Graph_Default.Field.b_BorderShow = true; -- false = no border t_Graph_Default.Field.n_BorderWidth = 1; t_Graph_Default.Field.n_BorderColor = 255; -- red t_Graph_Default.Field.n_FillStyle = 1; -- 1 = solid; 2 = gradient t_Graph_Default.Field.s_GradType = "VERTICAL"; -- "VERTICAL" / "HORIZONTAL" / "B_DIAGONAL" / "F_DIAGONAL" t_Graph_Default.Field.n_GradColor1_ = 16777215; -- white t_Graph_Default.Field.n_GradColor2_ = 16777215; -- white (to make solid fill) t_Graph_Default.Axes = {}; t_Graph_Default.Axes.n_X_Color = 16711680; -- blue t_Graph_Default.Axes.n_X_LabelColor = 16711680; -- blue t_Graph_Default.Axes.n_Y_Color = 16711680; -- blue t_Graph_Default.Axes.n_Y_LabelColor = 16711680; -- blue ---- GRID SETTINGS ---- --[[ PS_SOLID = "0"; PS_DASH = "1"; PS_DOT = "2"; PS_DASHDOT = "3"; PS_DASHDOTDOT = "4"; PS_NULL = "5"; ]] s_Grid_pen_type = "2"; -- dot n_Grid_pen_size = 1; -- 1 pixel width n_Grid_pen_color = 8421504; -- grey t_Grid_Default = {Grid_pen_type = "2", Grid_pen_size = 1, Grid_pen_color = 8421504};