3

I am using dojo toolkit for generating charts. I have used dojo pie charts, where i gave custom tooltip as

  chart1.addSeries("Series 1", [{x:1,y:4,tooltip:"Value is 1"},
                                {x:2,y:6,tooltip:"Value is 2"}]);

Similarly, i want to use this feature in ClusteredBars/ClusteredColumns also. Please, Can anyone kindly suggest me how to give custom-tooltip in ClusteredBars/ClusteredColumns type charts in dojo?

Thanks in advance, SuryaPavan

SuryaPavan
  • 347
  • 1
  • 6
  • 18

1 Answers1

3
chart1.addSeries("yourSerie", [ {
            y : $m0,
            tooltip : "the text to the serie"
        } ]);
user2990084
  • 2,699
  • 9
  • 31
  • 46
daniel__
  • 11,633
  • 15
  • 64
  • 91