diff options
author | Jan Klemkow <j.klemkow@wemelug.de> | 2013-01-08 15:31:39 +0100 |
---|---|---|
committer | Jan Klemkow <j.klemkow@wemelug.de> | 2013-01-08 15:31:39 +0100 |
commit | b87b23086cef0850f5baa9f1a4519576b26f4ab6 (patch) | |
tree | 0a1667227ea288757e00c42ddec59873eee865da /piechart.php | |
parent | 7336eeb587f72743c1288bad7df34195196a681f (diff) | |
download | sksys-b87b23086cef0850f5baa9f1a4519576b26f4ab6.tar.gz sksys-b87b23086cef0850f5baa9f1a4519576b26f4ab6.tar.bz2 sksys-b87b23086cef0850f5baa9f1a4519576b26f4ab6.zip |
make stroke bigger in pie chart.
Diffstat (limited to 'piechart.php')
-rw-r--r-- | piechart.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/piechart.php b/piechart.php index 42b29f9..ddb34c0 100644 --- a/piechart.php +++ b/piechart.php @@ -101,7 +101,7 @@ function piechart($data, $cx, $cy, $radius) { $chartelem .= " L$adx,$ady "; // draw line away away from cursor $chartelem .= " A$radius,$radius 0 $laf,1 $ax,$ay "; // draw arc $chartelem .= " z\" "; // z = close path - $chartelem .= " fill=\"$colour\" stroke=\"#FFFFFF\" stroke-width=\"2\" "; + $chartelem .= " fill=\"$colour\" stroke=\"#FFFFFF\" stroke-width=\"3\" "; $chartelem .= " fill-opacity=\"1.0\" stroke-linejoin=\"round\" />"; $dx = $x; // old end points become new starting point $dy = $y; // id. |