|
Display Single Value |
Posted by Steven on Oct-19-2015 21:08 |
|
Hello ,I have a question
I use BarLayer Add three Dataset ,
I can use display all Data
setAggregateLabelStyle
setAggregateLabelFormat
but I want display single Data Value Like this
Any Idea?
|
Re: Display Single Value |
Posted by Peter Kwan on Oct-20-2015 00:31 |
|
Hi Steven,
There are several methods. May be you try addCustomGroupLabel. For example, in C#, it is
like:
for (int i = 0; i < data0.Length; ++i)
layer.addCustomGroupLabel(0, i, "{value}");
Hope this can help.
Regards
Peter Kwan |
Re: Display Single Value |
Posted by Steven on Oct-20-2015 08:53 |
|
To Peter Kwan
It's work
Thanks lot |
|