長時間潛伏者,首次提問者。如果我錯過了一些東西,請告訴我。需要幫助來格式化使用openpyxl創建的圖表中的文本
我使用python 35和openpyxl 2.4.0。我在xlsx文件中生成了許多圖表。下面的代碼片段:
# create chart for summary graph
myChart = BarChart()
myChart.type = 'col'
myChart.style = 10
myChart.title = chartTitle # 'chartTitle' is passed to the function
myChart.y_axis.title = 'No. of WRs'
myChart.x_axis.title = 'WR assignee'
# some lines here omitted (related to charted data)
myChart.shape = 4
newSheet.add_chart(myChart, 'F1')
一切運作良好,但圖表標題和軸標題是18和16磅的字體 - 太大了圖表的大小。我不想在圖表大小上工作,因爲我事先不知道將繪製多少列 - 腳本讀取每週ERP轉儲並繪製特定結果。
openpyxl文檔提供格式化單元格的指導,但在圖表中的文字大小上沒有(我可以找到)。任何幫助,將不勝感激。
請編輯您的問題以顯示[您迄今嘗試過的方式](http://whathaveyoutried.com)。您應該包含您遇到問題的代碼[mcve],然後我們可以嘗試幫助解決特定問題。你還應該閱讀[問]。 –