Google charts legend manipulation

后端 未结 5 2079
無奈伤痛
無奈伤痛 2020-12-07 00:47

Using google area chart: http://code.google.com/apis/chart/interactive/docs/gallery/areachart.html

Does anyone know how I can freelly manipulate the legends?

5条回答
  •  感情败类
    2020-12-07 01:33

    I am looking for any smarter solution than mine so I saw this question.

    My current solution is to find html element that contains legend and manipulate with them as you would with your own custom html element. (You will have to deal with SVG elems here, though)

    document.getElementById('pie-chart').getElementsByTagName('g')[0].setAttribute("style", "transform: translate(-130px)");
    

提交回复
热议问题