Pie chart using Apex in Salesforce
Visualforce Page: <apex:page controller="Graph" > <apex:chart height="250" width="350" data="{!pieData}"> <apex:pieSeries dataField="data" labelField="name"/> <apex:legend position="right"/> </apex:chart> <apex:outputText value="{!temp1}"/> </apex:page> Apex: public with sharing class Graph { public List<PieWedgeData> getPieData() { List<PieWedgeData> ....