Hi,

I am using google chart api for my website and working with bar chart shows 
the sale by a person. Chart is working fine according to data i provided 
its shows the column.

I want to do improvement so that its look great for the manager.

Improvement

1. I want to show the sale figure inside the column.

2. I want to set the interval of y asix according to my wish.

Here is my chart script.

<script type='text/javascript'>  

                    google.load('visualization', '1', {packages: ['bar']});
                    google.setOnLoadCallback(drawSaleChart);
                     
                    function drawSaleChart() {         
                    var data = google.visualization.arrayToDataTable([  
                    ['Projektledare','Events','Sale','Avg Sale'],
                    ['Anstenius',2,40075,20037.5],
                    ['Björnaes',3,36183,12061],
                    ['Fuglsang',4,86083,21520.75],
                    ['Strand',2,38970,19485]]); 
var options = {chart: { title: 'Project Leader Performance: Sale'}};var chart = 
new google.charts.Bar(document.getElementById('div_saleChart'));
chart.draw(data, options);} </script>

<http://i58.tinypic.com/301or38.jpg>



-- 
You received this message because you are subscribed to the Google Groups 
"Google Chart 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 http://groups.google.com/group/google-chart-api.
For more options, visit https://groups.google.com/d/optout.

Reply via email to