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
Lukesh KarmoreLukesh Karmore 

I need Labels on Line charts ,How can i Add this labels

I need Labels on Line charts ,How can i Add this labels my code is :

 <apex:chart height="400" width="700" data="{!ChartData}" animate="true" >
          <apex:axis type="Numeric" position="left" fields="data1" 
            title="Opportunities Closed" grid="false" gridFill="true"/>
          <apex:axis type="Category" position="bottom" fields="name" 
            title="Month of the Year">
        </apex:axis>
        <apex:lineSeries  tips="true" axis="left" fill="true" xField="name" yField="data1"
                         markerType="cross" markerSize="4" markerFill="#FF0000"  showInLegend="true" highlight="true" fillColor="blue">
         <apex:chartTips height="25" width="150"/>
                       <apex:chartLabel field="data1" display="outside" font="bold 14px Helvetica"  />
 </apex:lineSeries>
        
   </apex:chart>
Please relevent ans only,dont wase my question
Thank you 
PriyaPriya (Salesforce Developers) 

Hi Lukesh,

Check this that matches your requirement :-

https://developer.salesforce.com/forums/?id=9062I000000IDxeQAG

Regards,

Priya Ranjan