cancel
Showing results for 
Search instead for 
Did you mean: 

How to add count value inside measure of the Donut chart

Former Member
0 Kudos

Hi,

var oDataSet = sap.viz.ui5.data.FlattenedDataset({

  dimensions : [ {

  name : "Status",

  axis : 1,

  value : "{Alignment}"

  } ],

  measures : [

  {name : 'CNT' ,value : '{Containers}'},

  ],

  data : {

  path : "/ContainerStatusCollection",

  factory : function() {

                 }

  }

  });

Please see the attachment .My requirement is to add the count inside .

Br

Dibya

Accepted Solutions (0)

Answers (1)

Answers (1)

philipp_steidl
Explorer
0 Kudos

Hi Dibya,

you have to do this:

oVizFrame.setVizProperties({ 

       plotArea: {

         showGap: true,

         dataLabel: {

                                visible: true

                            }

       }

     });

Regards

Philipp