Hello, I have a problem, when I use ChartEditor and want to have a format 
of thousands in number, does not work.
Thanks for the cooperation.

This is an example of the function you want to format

*     var wrapper;
    
     function init () {
      var = new google.visualization.ChartWrapper wrapper ({
         chartType 'ColumnChart'
         dataTable: [['', 'Germany', 'USA', 'Brazil', 'Canada', 'France', 
'RU'],
                     ['', 70000, 30000, 40000, 50000, 60000, 80000]],
         options: {'title': 'Countries'},
         ContainerId 'visualization'
       });
       wrapper.draw ();
     }
    
     openEditor function () {
       / / Handler for the "Open Editor" button.
       var google.visualization.ChartEditor editor = new ();
       google.visualization.events.addListener (editor, 'ok',
         function () {
           editor.getChartWrapper wrapper = ();
           wrapper.draw (document.getElementById ('visualization'));
       });
       editor.openDialog (wrapper);
     }
    
    
     google.setOnLoadCallback (init);*

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-visualization-api/-/c2Ip3Rbed2IJ.
To post to this group, send email to google-visualization-api@googlegroups.com.
To unsubscribe from this group, send email to 
google-visualization-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to