Skip to content

Instantly share code, notes, and snippets.

@atulgupta31
Created November 23, 2015 10:17
Show Gist options
  • Save atulgupta31/a322bfd1481ed6381949 to your computer and use it in GitHub Desktop.
Save atulgupta31/a322bfd1481ed6381949 to your computer and use it in GitHub Desktop.
<apex:page controller="vfc_radarSeries" >
<style>
#vfext4-ext-gen1026 {
width:800px !important;
}
</style>
<apex:chart name="myChart" height="600" width="650" legend="false" data="{!data}">
<apex:legend position="left" />
<apex:axis type="Radial" position="radial"/>
<apex:radarSeries title="Account Stats" xField="field" yField="value" tips="true" opacity="0.4"/>
</apex:chart>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment