是否有可能通過BartChart獲取GridLine? Gridlines將其繪製下,而且網格似乎不適用於BarChart。Mathematica條形圖頂部的GridLine
BarChart[{Range[10], Range[10]},
ChartLayout -> "Stacked",
GridLines -> {None, {4}},
GridLinesStyle -> Directive[Orange, Thick]]
是否有可能通過BartChart獲取GridLine? Gridlines將其繪製下,而且網格似乎不適用於BarChart。Mathematica條形圖頂部的GridLine
BarChart[{Range[10], Range[10]},
ChartLayout -> "Stacked",
GridLines -> {None, {4}},
GridLinesStyle -> Directive[Orange, Thick]]
這可以通過一個方法選項來完成:(此應該工作任何圖形)
BarChart[{Range[10], Range[10]}, ChartLayout -> "Stacked",
GridLines -> {None, {4}}, GridLinesStyle -> Directive[Orange, Thick],
Method -> {"GridLinesInFront" -> True}]
在佈雷特, 精彩,謝謝!由於某種原因,@Brett,使Brett和@消失。 – 500
是否記錄在案?我認爲我以前沒有遇到過。 –
似乎還有一個圖形選項\t'Method - > {「AxesInFront」 - > True}'See [here](http://forums.wolfram.com/mathgroup/archive/2007/Aug/msg00164.html )由David Park進行Mathgroup討論。從來沒有聽說過我自己。 – tomd