How to create donut chart in Visualforce page using Apex in Salesforce?
Sample code: Visualforce page: <apex:page controller="Graph" > <apex:pageblock title="Members and their Years of experience" > <apex:chart height="250" width="350" data="{!pieData}"> <apex:pieSeries tips="true" dataField="data" labelField="name" donut="50"/> <apex:legend position="bottom"/> </apex:chart> </apex:pageblock> ....