Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
390
Percent_value for tooltip is not updated while mouse over legend
posted

Hi,

       I am using piechart 3D in my application. I have usede the tool tip for both the chart and for the legend. The format that i have used for chart is

assetAllocationChart.ToolTipFormat =

 

"<ITEM_LABEL>" + "(" + "<PERCENT_VALUE:#,#0.00>%)" + "(" + "<DATA_VALUE:#,#,0.00>" + ")";

and for tooltip is

 

this

 

 

.ultraChart1.Legend.FormatString = "<ITEM_LABEL>" + "(" + "<PERCENT_VALUE:#0.00>%" + ")"

;

 

 

 

this.ultraChart1.Tooltips.FormatString = "<ITEM_LABEL>" + "(" + "<PERCENT_VALUE:#0.00>%)" + "(" + "<DATA_VALUE:#,#,0.00>" + ")";

The problem is, when i mouse over different slices of pie chart, the tooltip is updated correctly for each slices but for legend only the ITEM_LABEL and DATA_VALUE is updated. The percent_value is same as the last percent value of the legend item.

 

I don know why it's happenening.

 

;