• Skip Kleckner
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
I'm wondering if someone would like to volunteer to review a small project I'm working on. I'm looking for some guidence on best practices and design.

Let me know if you're interested.

Thanks!
I'm trying to use two input parameters to display a stacked barseries chart:
<apex:chart data="{!LineItemTotals}" height="400" width="500">
     <apex:legend position="left"/>
     <apex:axis type="Numeric" position="left" title="Closed Won" grid="true"
         fields="sold,sample" dashSize="2">
         <apex:chartLabel />
     </apex:axis>
     <apex:axis type="Category" position="bottom" fields="name" title="Stacked Bars">
         <apex:chartLabel rotate="315"/>
     </apex:axis>
     <apex:barSeries orientation="vertical" axis="left" stacked="true"
         xField="name" yField="sold,sample" title="Sold,Sample"/>
</apex:chart>

If I use either sold or sample alone the chart renders. When I use both it doesn't.

Any help is greatly appreciated.

Thanks!
I'm trying to use two input parameters to display a stacked barseries chart:
<apex:chart data="{!LineItemTotals}" height="400" width="500">
     <apex:legend position="left"/>
     <apex:axis type="Numeric" position="left" title="Closed Won" grid="true"
         fields="sold,sample" dashSize="2">
         <apex:chartLabel />
     </apex:axis>
     <apex:axis type="Category" position="bottom" fields="name" title="Stacked Bars">
         <apex:chartLabel rotate="315"/>
     </apex:axis>
     <apex:barSeries orientation="vertical" axis="left" stacked="true"
         xField="name" yField="sold,sample" title="Sold,Sample"/>
</apex:chart>

If I use either sold or sample alone the chart renders. When I use both it doesn't.

Any help is greatly appreciated.

Thanks!
I'm wondering if someone would like to volunteer to review a small project I'm working on. I'm looking for some guidence on best practices and design.

Let me know if you're interested.

Thanks!