Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
How to customize series labels
estebi
Hi,
Here is the issue : I have a chart in bars, each bars contains 2 series (cumulative), I want to show a label on top of each bar with the total amount of the entire bar (ie serie1 + serie2). but the designer only authorizes me to show the Serie value for each serie individually. Is there a way to change this value by hand with a script ?
Regards
Tristan
Find more posts tagged with
Comments
estebi
Ok I found it !<br />
<br />
Here is the way of :<br />
<br />
<pre class='_prettyXprint _lang-auto _linenums:0'>
function beforeDrawDataPointLabel( dph, label, icsc )
{
label.getCaption().setValue("test");
}
</pre>