This is a migrated thread and some comments may be shown as answers.

Bubble Chart - is it possible to show labels on individual entries ONLY WHEN THEY'RE BIG ENOUGH?

1 Answer 159 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Mark
Top achievements
Rank 1
Mark asked on 18 Nov 2013, 03:25 PM
See the attached image - that's what I want to do :-)  Is it possible?

1 Answer, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 19 Nov 2013, 01:35 PM
Hi Mark,

In order to achieve this you could execute custom logic in the series.labels.visible function. For example: 
$("#chart").kendoChart({
  //...
  series: [{ 
     labels: {
        visible: function(e){
             //your custom logic here
        }
     }
  }]
});

Regards,
Iliana Nikolova
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Charts
Asked by
Mark
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Share this question
or