
# All colors are defined either as:
#     (R, G, B)
#     (R, G, B, A)
#     #RRGGBB
#     <name>  where <name> is one of the 147 SVG named colors:
#             http://www.december.com/html/spec/colorsvg.html


# Applies to all text in the plot
text {
    font_family = modern
    font_size = 12
    font_style = normal    # "italic"
    font_weight = normal   # "bold", "light", "bolder"
    halign = left          # "right", "center"
    valign = bottom        # "top", "center"
}

text box { 
    margin = 10.0
    padding = 10.0
    border_width = 2.0
    border_color = black
    bg_color = white    
}

axis {
    line_color = black
    bg_color = white
    line_weight = 1.0
    line_dash = (1.0)
    scaling = linear      # "log"
    low_setting = 0.0     # "auto", "fit"
    high_setting = 100.0  # "auto", "fit"
    visible = true
}

axis tick {
    in = 0
    out = 5
    interval = 20.0
    visible = true
}

axis tick text {
    format = %3.2f
    font_size = 14
    halign = center
    valign = center
}

axis title text {
    fill_color = green
    font_size = 10
}

axis title text box {
    visible = false
}

grid {
    line_color = gray
    line_weight = 1.0
    line_dash = (1.0, 1.0)   # Tuple, see kiva's line_dash parameter
    visible = true
}

legend {
    line_color = black
    visible = false
}

legend box {    # the box around the entire legend
    line_weight = 2.0
    visible = true
}

legend text box {   # the box around each individual element
    visible = false
}

legend text#plot_data_foo box {
    visible = true
}

plot {
    line_color = black
    bgcolor = white
}
