Monday, December 31, 2012

google chart tools


in the Google Chart Tools documentation: 
Options: hAxis.showTextEvery

in the code
 new google.visualization.LineChart(document.getElementById('block_line_visualization')).
                    draw(data, { title: "y-axis: Quantity | x-axis: Time-Frame",
                        width: 700, height: 700,
                        vAxis: {maxValue: 6},
                        hAxis: {showTextEvery:1}
        }
            );

No comments:

Post a Comment