0

このGoogle Chartから JavaScript で関数を作成しました

function drawVisualization() {
  // Create and populate the data table.
  var data = google.visualization.arrayToDataTable([
    ['Name',                                                                 'Manager', 'Tooltip'],
    ['Mike',                                                                 null,      'The President'],
    [{v: 'Jim', f: 'Jim<br/><font color="red"><i>Vice President<i></font>'}, 'Mike',    null],
    ['Alice',                                                                'Mike',    'wonderland'],
    ['Bob',                                                                  'Jim',     'Bob Sponge'],
    ['Carol',                                                                'Bob',     null]
  ]);

  // Create and draw the visualization.
  new google.visualization.OrgChart(document.getElementById('visualization')).
      draw(data, {allowHtml: true});
}

JavaScript で宣言されているデータ配列変数を入力する方法がわかりません。

4

1 に答える 1

0

次のようなことをする必要があります。

  string serverVariable = "abc";
        string script = string.Format("javascript:var j={0};", serverVariable);        
        ScriptManager.RegisterStartupScript(this, this.GetType(), "uniqueKey", script, true);
于 2013-07-11T13:34:34.660 に答える