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
thoriyasthoriyas 

Display Attribute of apex:chartLabel not working...

I have one apex chart with staked bar and i'm tring to disply it's label as insideEnd as mention in https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_chartLabel.htm

Below is my code snpist,

 

<apex:chart height="350" width="400" data="jsonObjTaskByDueWeek"> 
			            <apex:axis type="Numeric" position="left" fields="In Progress,Submitted,Rejected" dashSize="2" title="{!$Label.Assessment_Controls}"/>    
			            <apex:axis type="Category" position="bottom" fields="name" title="Weeks">            
			            	<apex:chartLabel display="insideEnd"/>
			            </apex:axis>
			            <apex:barSeries orientation="vertical" stacked="true" colorSet="{!taskByDueWeekColorSet}"
			             axis="left" xField="name" yField="In Progress,Submitted,Rejected">
			             <apex:chartTips height="25" width="150" rendererFn="setToolTip" />
			            </apex:barSeries>
			            <apex:legend position="bottom"/>
			        </apex:chart>

 

User-added image

In the above image label are not comming correctly.. It's should come in cross with insideend. 

Any luck?

mdepmdep
Looks like this bug still has not been fixed after 3 years.