Pie chart and Bar chart using Apex in Visualforce page
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"/> <apex:legend position="bottom"/> </apex:chart> </apex:pageblock> <apex:pageblock title="Members and ....