0

I have Pie chart drawn using CSS. when current image is not starting from 0 degree..

Actual Out & Expected Output : Green should be 140 deg ; red : 60 deg ; orange: 160 deg

enter image description here

CSS :

<style>
/* 
  make each pie piece a rectangle twice as high as it is wide.
  move the transform origin to the middle of the left side.
  Also ensure that overflow is set to hidden.
*/
  .pie {
        position:absolute;
        width:100px;
        height:200px;
        overflow:hidden;
        left:110px;
        -moz-transform-origin:left center;
        -ms-transform-origin:left center;
        -o-transform-origin:left center;
        -webkit-transform-origin:left center;
        transform-origin:left center;
    }
/*
  unless the piece represents more than 50% of the whole chart.
  then make it a square, and ensure the transform origin is
  back in the center.

  NOTE: since this is only ever a single piece, you could
  move this to a piece specific rule and remove the extra class
*/
    .pie.big {
        width:200px;
        height:200px;
        left:10px;
        -moz-transform-origin:center center;
        -ms-transform-origin:center center;
        -o-transform-origin:center center;
        -webkit-transform-origin:center center;
        transform-origin:center center;
    }
/*
  this is the actual visible part of the pie. 
  Give it the same dimensions as the regular piece.
  Use border radius make it a half circle.
  move transform origin to the middle of the right side.
  Push it out to the left of the containing box.
*/
    .pie:BEFORE {
        content:"";
        position:absolute;
        width:100px;
        height:200px;
        left:-100px;
        border-radius:100px 0 0 100px;
        -moz-transform-origin:right center;
        -ms-transform-origin:right center;
        -o-transform-origin:right center;
        -webkit-transform-origin:right center;
        transform-origin:right center;

    }
 /* if it's part of a big piece, bring it back into the square */
    .pie.big:BEFORE {
        left:0px;
    }
/* 
  big pieces will also need a second semicircle, pointed in the
  opposite direction to hide the first part behind.
*/
    .pie.big:AFTER {
        content:"";
        position:absolute;
        width:100px;
        height:200px;
        left:100px;
        border-radius:0 100px 100px 0;
    }
/*
  add colour to each piece.
*/
    .pie:nth-of-type(1):AFTER,
    .pie:nth-of-type(1):BEFORE {
        background-color:green; 
    }
    .pie:nth-of-type(2):AFTER,
    .pie:nth-of-type(2):BEFORE {
        background-color:red;   
    }
    .pie:nth-of-type(3):AFTER,
    .pie:nth-of-type(3):BEFORE {
        background-color:orange;    
    }
/*
  now rotate each piece based on their cumulative starting
  position
*/
    .pie[data-start="140"] {
        -moz-transform: rotate(140deg); /* Firefox */
        -ms-transform: rotate(140deg); /* IE */
        -webkit-transform: rotate(140deg); /* Safari and Chrome */
        -o-transform: rotate(140deg); /* Opera */
        transform:rotate(140deg);
    }
    .pie[data-start="200"] {
        -moz-transform: rotate(200deg); /* Firefox */
        -ms-transform: rotate(200deg); /* IE */
        -webkit-transform: rotate(200deg); /* Safari and Chrome */
        -o-transform: rotate(200deg); /* Opera */
        transform:rotate(200deg);
    }
/*
  and rotate the amount of the pie that's showing.

  NOTE: add an extra degree to all but the final piece, 
  to fill in unsightly gaps.
*/
    .pie[data-value="140"]:BEFORE {
        -moz-transform: rotate(140deg); /* Firefox */
        -ms-transform: rotate(140deg); /* IE */
        -webkit-transform: rotate(140deg); /* Safari and Chrome */
        -o-transform: rotate(140deg); /* Opera */
        transform:rotate(140deg);
    }
    .pie[data-value="60"]:BEFORE {
        -moz-transform: rotate(60deg); /* Firefox */
        -ms-transform: rotate(60deg); /* IE */
        -webkit-transform: rotate(60deg); /* Safari and Chrome */
        -o-transform: rotate(60deg); /* Opera */
        transform:rotate(60deg);
    }
    .pie[data-value="160"]:BEFORE {
        -moz-transform: rotate(160deg); /* Firefox */
        -ms-transform: rotate(160deg); /* IE */
        -webkit-transform: rotate(160deg); /* Safari and Chrome */
        -o-transform: rotate(160deg); /* Opera */
        transform:rotate(160deg);
    }
/*
NOTE: you could also apply custom classes (i.e. .s0 .v30)
but if the CSS3 attr() function proposal ever gets implemented,
then all the above custom piece rules could be replaced with
the following:

.pie[data-start] {
   transform:rotate(attr(data-start,deg,0);
}
.pie[data-value]:BEFORE {
   transform:rotate(attr(data-value,deg,0);
}
*/
</style>

HTML :

<!-- 
for each piece of the pie chart create one div and give it
a data-value attribute that represents the amount (in degrees) that
represents its total visible portion, and a data-start attribute
that matches the amount rotation for the starting  (the cumulative value amount of all the previous pieces).
-->
<div class="pie" data-start="0" data-value="140"></div>
<div class="pie" data-start="140" data-value="60"></div>
<div class="pie big" data-start="200" data-value="160"></div>
logan
  • 7,946
  • 36
  • 114
  • 185

1 Answers1

0

use

.pie[data-start="200"] {
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}

Fiddle

Sahil Popli
  • 1,967
  • 14
  • 21
  • my diagram is dynamic.. will this work for any angles that i set ? – logan Jan 22 '14 at 08:04
  • you can use your attribute value [data-start="200"] but with jquery degree value – Sahil Popli Jan 22 '14 at 08:06
  • Its not working for red color; red is not 60deg Output should be Green 140 deg ; red : 60 deg ; orange: 160 deg; – logan Jan 22 '14 at 08:07
  • why dont you use http://www.jqchart.com/jquery/chart/charttypes/piechart for this have a look – Sahil Popli Jan 22 '14 at 08:14
  • you can not use dynamic values in css but you can use any css pre processor like sass or less but also they need jQuery. but here some more charting solution in pure CSS3 http://stackoverflow.com/questions/10028182/how-to-make-a-pie-chart-in-css-3 http://media.smashingmagazine.com/wp-content/uploads/uploader/images/css3-designs/css3-charts/index.html http://atomicnoggin.ca/blog/2010/02/20/pure-css3-pie-charts/ – Sahil Popli Jan 22 '14 at 10:39