Hi, i feel like i've been going to over and over on the google site trying 
to add the option to filter on the 0 index of my data. what am i doing 
wrong?

<html>
  <head>
  <META HTTP-EQUIV="refresh" CONTENT="60">
    <script type="text/javascript" src=
"https://www.gstatic.com/charts/loader.js";></script>
    <script type="text/javascript">
    google.charts.load('current', {packages: ['corechart', 'bar']});
    google.charts.setOnLoadCallback(drawStacked);

      function drawStacked() {
        var data = new google.visualization.arrayToDataTable([
        ['folder', 'ready', 'freelanced', 'ready to QA' , 'placeholder' , 'not 
ready'],
['/Volumes/photorepos/Partners/Christopher_Banks/post/CB_instock/3' , 0, 0, 
0, 0, 2],
['/Volumes/photorepos/Partners/Christopher_Banks/post/CB_instock/4' , 0, 0, 
0, 0, 1],
['/Volumes/photorepos/Partners/Christopher_Banks/post/CB_instock/5' , 0, 0, 
0, 0, 2],
['/Volumes/photorepos/Partners/Christopher_Banks/post/CB_instock/18' , 0, 0, 
0, 0, 1],
['/Volumes/photorepos/Partners/Aeropostale/post/instock/1' , 0, 0, 0, 0, 9],
['/Volumes/photorepos/Partners/Aeropostale/post/instock/2' , 0, 0, 0, 0, 32
],
['/Volumes/photorepos/Partners/Aeropostale/post/instock/9' , 0, 0, 0, 0, 33
],
['/Volumes/photorepos/Partners/Aeropostale/post/instock/13' , 0, 0, 0, 0, 4
],
['/Volumes/photorepos/Partners/Maurices/Post/instock/7' , 13, 0, 0, 0, 0],
['/Volumes/photorepos/Partners/Maurices/Post/instock/8' , 40, 0, 0, 0, 1],
['/Volumes/photorepos/Partners/Dress_Barn/Post/instock/RUSH' , 37, 0, 0, 0, 
0],
['/Volumes/photorepos/Partners/Dress_Barn/Post/instock/1' , 0, 0, 0, 0, 1],
['/Volumes/photorepos/Partners/Dress_Barn/Post/instock/5' , 0, 0, 0, 0, 1],
['/Volumes/photorepos/Partners/Dress_Barn/Post/instock/7' , 12, 0, 0, 0, 0],
['/Volumes/photorepos/Partners/Dress_Barn/Post/instock/8' , 12, 0, 0, 0, 1],
['/Volumes/photorepos/Partners/NYCompany/post/instock/3' , 0, 0, 0, 0, 1],
['/Volumes/photorepos/Partners/NYCompany/post/instock/5' , 0, 0, 0, 0, 81],
['/Volumes/photorepos/Partners/NYCompany/post/instock/6' , 0, 0, 0, 0, 2],
['/Volumes/photorepos/Partners/HenriBendel/post/instock/6' , 112, 0, 0, 0, 
10],
['/Volumes/photorepos/Partners/HenriBendel/post/instock/8' , 20, 0, 0, 0, 6
],
['/Volumes/photorepos/Partners/Uniqlo/Post/instock/8' , 88, 0, 0, 0, 1],
]);

        var options = {
        chartArea:{left:"30%",top:"5%",width:"60%",height:"50%"},
       width: 1500,
       height: 1800,
        colors: ['#00a591', '#ECDB54', '#6B5B95', '808080', '#E94B3C'],
        isStacked: true,
        fontSize: 11,
        title: 'Folder Count 04-05-18 03:20:01',
        chartType: 'ComboChart',
        filterColumnIndex: 0
        };
        
        

  var chart = new google.visualization.BarChart(document.getElementById(
'dual_x_div'));
      chart.draw(data, options);
    };
    </script>
  </head>
  <body>
    <div id="dual_x_div" style="width: 1500px; height: 700px;"></div>
  </body>
</html>Enter code here...


-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-visualization-api/23e5d9af-278d-4674-94c2-3578d44eac6b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to