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.
86 lines
1.3 KiB
86 lines
1.3 KiB
16 years ago
|
/*
|
||
|
$Id$
|
||
|
*/
|
||
|
|
||
|
.dataPointLabel{
|
||
|
fill: #000000;
|
||
|
text-anchor:middle;
|
||
16 years ago
|
font-size: %(datapoint_font_size)spx;
|
||
16 years ago
|
font-family: "Arial", sans-serif;
|
||
|
font-weight: normal;
|
||
|
}
|
||
|
|
||
|
/* key - MUST match fill styles */
|
||
|
.key1,.fill1{
|
||
|
fill: #ff0000;
|
||
|
fill-opacity: 0.7;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key2,.fill2{
|
||
|
fill: #0000ff;
|
||
|
fill-opacity: 0.7;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key3,.fill3{
|
||
|
fill-opacity: 0.7;
|
||
|
fill: #00ff00;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key4,.fill4{
|
||
|
fill-opacity: 0.7;
|
||
|
fill: #ffcc00;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key5,.fill5{
|
||
|
fill-opacity: 0.7;
|
||
|
fill: #00ccff;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key6,.fill6{
|
||
|
fill-opacity: 0.7;
|
||
|
fill: #ff00ff;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key7,.fill7{
|
||
|
fill-opacity: 0.7;
|
||
|
fill: #00ff99;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key8,.fill8{
|
||
|
fill-opacity: 0.7;
|
||
|
fill: #ffff00;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key9,.fill9{
|
||
|
fill-opacity: 0.7;
|
||
|
fill: #cc6666;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key10,.fill10{
|
||
|
fill-opacity: 0.7;
|
||
|
fill: #663399;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key11,.fill11{
|
||
|
fill-opacity: 0.7;
|
||
|
fill: #339900;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|
||
|
.key12,.fill12{
|
||
|
fill-opacity: 0.7;
|
||
|
fill: #9966FF;
|
||
|
stroke: none;
|
||
|
stroke-width: 1px;
|
||
|
}
|