2

I'm trying to display the customized label inside the bar chart. No idea on how to do this.. Please help me. Label should be displayed inside each bar

Developer404
  • 5,716
  • 16
  • 64
  • 102

1 Answers1

1

You just specify this in Series config... It's working fine for me:

  label: {
      display: 'outsideEnd',
        field: 'data1',  // field name
        orientation: 'horizontal',  //  or 'vertical'

         color: '#0000FF',
        'text-anchor': 'middle'
    },
Zsolt Botykai
  • 50,406
  • 14
  • 85
  • 110
Nag
  • 1,438
  • 1
  • 11
  • 39