0

円グラフにバインドされた日付を選択するためのカテゴリ フィルターがあります。現在、デフォルトとしてキャプションが表示されています (「値を選択してください」)。デフォルト値を、最後の日付など、含まれている値の1つに設定したいと思います。

これどうやってするの?

ありがとう!

4

1 に答える 1

0

少し遅れましたが、この例をチェックしてください:

  // Load the Visualization API and the piechart package.
  google.load('visualization', '1.0', {'packages':['corechart']});

  // Set a callback to run when the Google Visualization API is loaded.
  google.setOnLoadCallback(drawChart);

  // Callback that creates and populates a data table,
  // instantiates the pie chart, passes in the data and
  // draws it.
  function drawChart() {

    // Create the data table.
    var data = google.visualization.arrayToDataTable([
      ['Year', 'Sales', 'Expenses'],
      ['2004',  1000,      400],
      ['2005',  1170,      460],
      ['2006',  660,       1120],
      ['2007',  1030,      540]
    ]);

    var options = {
      title: 'Company Performance'
    };

    var chart = new google.visualization.LineChart(document.getElementById('chart_div'));
    chart.draw(data, options);
    //============All=U=Need============
    chart.setSelection([{'column': 1}]);
    //============All=U=Need============
  }

:D

于 2013-04-03T11:15:16.560 に答える