mirror of https://github.com/Kozea/pygal.git
Python to generate nice looking SVG graph
http://pygal.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
1.6 KiB
93 lines
1.6 KiB
16 years ago
|
/*
|
||
|
$Id$
|
||
|
|
||
|
Base styles for svg.charts.Graph
|
||
|
*/
|
||
|
|
||
16 years ago
|
.svgBackground{
|
||
|
fill:#ffffff;
|
||
|
}
|
||
|
.graphBackground{
|
||
|
fill:#f0f0f0;
|
||
|
}
|
||
|
|
||
|
/* graphs titles */
|
||
|
.mainTitle{
|
||
|
text-anchor: middle;
|
||
|
fill: #000000;
|
||
|
font-size: %(title_font_size)dpx;
|
||
|
font-family: "Arial", sans-serif;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
.subTitle{
|
||
|
text-anchor: middle;
|
||
|
fill: #999999;
|
||
|
font-size: %(subtitle_font_size)dpx;
|
||
|
font-family: "Arial", sans-serif;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.axis{
|
||
|
stroke: #000000;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
|
||
|
.guideLines{
|
||
|
stroke: #666666;
|
||
|
stroke-width: 1px;
|
||
|
stroke-dasharray: 5 5;
|
||
|
}
|
||
|
|
||
|
.xAxisLabels{
|
||
|
text-anchor: middle;
|
||
|
fill: #000000;
|
||
|
font-size: %(x_label_font_size)dpx;
|
||
|
font-family: "Arial", sans-serif;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.yAxisLabels{
|
||
|
text-anchor: end;
|
||
|
fill: #000000;
|
||
|
font-size: %(y_label_font_size)dpx;
|
||
|
font-family: "Arial", sans-serif;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.xAxisTitle{
|
||
|
text-anchor: middle;
|
||
|
fill: #ff0000;
|
||
|
font-size: %(x_title_font_size)dpx;
|
||
|
font-family: "Arial", sans-serif;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.yAxisTitle{
|
||
|
fill: #ff0000;
|
||
|
text-anchor: middle;
|
||
|
font-size: %(y_title_font_size)dpx;
|
||
|
font-family: "Arial", sans-serif;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.dataPointLabel{
|
||
|
fill: #000000;
|
||
|
text-anchor:middle;
|
||
|
font-size: 10px;
|
||
|
font-family: "Arial", sans-serif;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
.staggerGuideLine{
|
||
|
fill: none;
|
||
|
stroke: #000000;
|
||
|
stroke-width: 0.5px;
|
||
|
}
|
||
|
|
||
|
.keyText{
|
||
|
fill: #000000;
|
||
|
text-anchor:start;
|
||
|
font-size: %(key_font_size)dpx;
|
||
|
font-family: "Arial", sans-serif;
|
||
|
font-weight: normal;
|
||
|
}
|