Hello.
 
I'm biginer of google chart.
Help me. Please.
 
----------------------------------------------------------------------
same source.
 
<html>
  <head>
    <script type="text/javascript" src="
https://www.google.com/jsapi";></script>
    <script type="text/javascript">
      google.load("visualization", "1", {packages:["corechart"]});
      google.setOnLoadCallback(drawChart);
      function drawChart() {
        var data = google.visualization.arrayToDataTable([
          ['Year', 'Sales', 'Expenses'],
          ['2004',  1000,      400],
          ['2005',  1170,      460],
          ['2006',  660,       1120],
          ['2007',  1030,      540]
        ]);
        var options = {
           //title: v_orgnam + ' 이익율 그래프',
    title: 'Inbreaktime',
    titleTextStyle: {color: '#000000', *fontName: 'Dotum'*, fontSize: 14},
    legend: 'none', 
    //colors:[ {'red' : smaller-0, 'green':greater-0}],
    //colors:[aaa,''],
    isStacked: true,
          vAxis: {title: '',  titleTextStyle: {color: 'blue', fontSize:50}}
        };
        var chart = new 
google.visualization.BarChart(document.getElementById('chart_div'));
        chart.draw(data, options);
      }
    </script>
  </head>
  <body>
    <div id="chart_div" style="width: 900px; height: 500px;"></div>
  </body>
</html>
------------------------------------------------------------------------------------------------
 
This is applied with local PC.
But, This is applied with WAS server.
 
How to apply this sentence *fontName: 'Dotum' *
with..WAS....?
 
 

-- 
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 http://groups.google.com/group/google-visualization-api.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to