Wednesday, March 4, 2015

Looks like a bug in Google Charts for aria-label="A tabular representation of the data in the chart."

Looks like a bug in Google Charts Library.

It have a new feature adding a div with aria-label="A tabular representation of the data in the chart." that holds the data of your graph in a table.


But for me it created a bug in the css causing the whole screen to be very wide with a bottom scroll. After some investigations with Firebug I noticed the
aria-label="A tabular representation of the data in the chart." have a style="position: absolute; left: -10000px" causing this endless horizontal scroll.

The solution for me was to add in the css a "display:none":

.small_graph svg + div {display:none;}



2 comments:

  1. Thank youuuu so much
    also its work with
    I'v been search for the solution for along time
    this only solution was work with me
    yes its bug from google

    thanks again

    ReplyDelete
  2. Damn I spend few days to find you!
    Thanks

    ReplyDelete