Skip to content

Instantly share code, notes, and snippets.

@atulgupta31
Created November 2, 2015 13:09
Show Gist options
  • Save atulgupta31/84a358be84b95596f9d2 to your computer and use it in GitHub Desktop.
Save atulgupta31/84a358be84b95596f9d2 to your computer and use it in GitHub Desktop.
<apex:page controller="vfc_apexbarSeries" showHeader="false" readOnly="true">
<apex:chart width="600" height="275" data="{!data}">
<apex:axis type="Numeric" position="right" fields="monthlyRevenue" title="Revenue (US$)">
<apex:chartLabel rotate="60"/>
</apex:axis>
<apex:axis type="Category" position="bottom" fields="theMonth" title="2011">
</apex:axis>
<apex:barSeries title="Monthly Sales" orientation="vertical" axis="right" xField="theMonth" yField="monthlyRevenue"/>
</apex:chart>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment