Skip to content

Instantly share code, notes, and snippets.

@atulgupta31
Created November 3, 2015 11:41
Show Gist options
  • Save atulgupta31/cfdc0d4ce1881fca1d42 to your computer and use it in GitHub Desktop.
Save atulgupta31/cfdc0d4ce1881fca1d42 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:chartTips height="20" width="120"/>
</apex:barSeries>
</apex:chart>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment