function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
pikotaropikotaro 

To display a value in a bar graph

User-added image
 
<apex:chart data="{!param.barData}"
                                width="100%"
                                height="300px"
                                theme="Green"
                                colorSet="#156F9E,#FF9123,#6BAE4A,#424242,#A4A4A4">
                        <apex:barSeries orientation="horizontal"
                                        axis="left"
                                        stacked="false"
                                        xField="value1,value2"
                                        yField="name"
                                        title="A,B">
                            <apex:chartLabel field="value1" display="outside" color="#999" font="11px bold" orientation="horizontal"/>
                            <apex:chartLabel field="value2" display="outside" color="#999" font="11px bold" orientation="horizontal"/>
                        </apex:barSeries>

                        <apex:axis position="bottom"
                                   type="Numeric"
                                   fields="value1,value2">
                            <apex:chartLabel/>
                        </apex:axis>

                        <apex:axis position="left"
                                   type="Category"
                                   grid="true"
                                   fields="name">
                            <apex:chartLabel/>
                        </apex:axis>

                        <apex:legend position="top"/>
                    </apex:chart>

How can value2 be plotted on the graph?