亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

為什么 titleTextStyle 不能與 Google Charts 中的標題選項一起使用?

為什么 titleTextStyle 不能與 Google Charts 中的標題選項一起使用?

PHP
慕斯709654 2022-12-23 12:23:35
我正在使用 Google Charts 使用從 Mysql 數據庫獲取的數據創建一個簡單的條形圖。圖表顯示正確,但我無法設置圖表標題的格式。我參考過很多網站,我確信“titleTextStyle”的語法沒問題。但是標題根本不會隨著選項而改變。有人可以告訴我問題出在哪里嗎?我在下面附上了我的完整代碼。提前致謝。<?php     include("toconnect.php");    $result = mysqli_query($connection,"SELECT Product_name,COUNT(*)  FROM Items_Sold GROUP BY Product_name");?><!DOCTYPE html><html>  <head>    <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>    <script type="text/javascript">      google.charts.load('current', {'packages':['bar']});      google.charts.setOnLoadCallback(drawChart);      function drawChart() {        var data = google.visualization.arrayToDataTable([          ['Product Name', 'Frequency'],          <?php             if(mysqli_num_rows($result) > 0){                    while($row = mysqli_fetch_array($result))                    {                            echo "['".$row["Product_name"]."','".$row["COUNT(*)"]."'],";                    }            }          ?>        ]);        var options = {          chart: {            title: "Frequently Bought items",titleTextStyle:{ color: '#007DB0',fontName: "Times",fontSize: 60,bold: true},        }        };        var chart = new google.charts.Bar(document.getElementById('columnchart_material'));        chart.draw(data, google.charts.Bar.convertOptions(options));      }    </script>  </head>  <body>    <div id="columnchart_material" style="width: 800px; height: 500px;display:inline-block;"></div>  </body></html>
查看完整描述

1 回答

?
料青山看我應如是

TA貢獻1772條經驗 獲得超8個贊

您正在使用材料圖表...

google.charts.Bar

可以在此處找到 在材料圖表中不起作用的功能列表...

材料圖表功能奇偶校驗的跟蹤問題 #2143

包括...

titleTextStyle


嘗試使用經典圖表代替...

google.visualization.ColumnChart

有選項...

theme: 'material'


查看完整回答
反對 回復 2022-12-23
  • 1 回答
  • 0 關注
  • 79 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號