December 2013

Salesforce

Radar Chart using Visualforce and Apex in Salesforce

Sample Code: Visualforce page: <apex:page sidebar="false" Controller="Sample" showHeader="true" id="pg"> <apex:chart height="750" width="800" legend="true" data="{!data}"> <apex:legend position="left"/> <apex:axis type="Radial" position="radial"> <apex:chartLabel /> </apex:axis> <apex:radarSeries xField="memName" yField="tenthPercent" tips="true" opacity="0.4"/> <apex:radarSeries xField="memName" yField="twelthPercent" ....