使用 Mathematica 条形图中的 LabelingFunction 调整字体

发布于 2024-11-29 15:27:59 字数 484 浏览 2 评论 0原文

考虑以下条形图:

如何调整标签功能以及图表标签的字体?

我尝试过嵌套样式。不成功。

BarChart[{1, 2, 3, 4},
ChartStyle -> {Blue, Red, Green, Yellow},
LabelStyle -> Directive[Black, Large],
ChartLabels -> {"COG1", "COG2", "COG3", "COG4"},
ImageSize -> {500, 300},
ChartBaseStyle -> EdgeForm[Thick],
LabelingFunction -> Bottom,
Background -> Black,
LabelStyle -> Directive[Black, Large]]

在此处输入图像描述

Considering the following BarChart :

How Could I adjust the Font for the Labeling Function as well as the Chart Labels ?

I tried nesting Style. Unsuccessfull.

BarChart[{1, 2, 3, 4},
ChartStyle -> {Blue, Red, Green, Yellow},
LabelStyle -> Directive[Black, Large],
ChartLabels -> {"COG1", "COG2", "COG3", "COG4"},
ImageSize -> {500, 300},
ChartBaseStyle -> EdgeForm[Thick],
LabelingFunction -> Bottom,
Background -> Black,
LabelStyle -> Directive[Black, Large]]

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筑梦 2024-12-06 15:27:59

你的意思是这样的吗?

BarChart[{1, 2, 3, 4}, 
 ChartStyle -> {Blue, Red, Green, Yellow}, 
 ChartLabels -> (Style[#, Large, White] & /@ {"COG1", "COG2", "COG3", "COG4"}),
 LabelingFunction -> (Placed[Style[#, Large], Bottom] &), 
 ImageSize -> {500, 300},
 ChartBaseStyle -> EdgeForm[Thick], 
 Background -> Black,
 AxesStyle -> White, LabelStyle -> {Large}]

barchart

编辑

更改坐标区的样式。

Do you mean something like this?

BarChart[{1, 2, 3, 4}, 
 ChartStyle -> {Blue, Red, Green, Yellow}, 
 ChartLabels -> (Style[#, Large, White] & /@ {"COG1", "COG2", "COG3", "COG4"}),
 LabelingFunction -> (Placed[Style[#, Large], Bottom] &), 
 ImageSize -> {500, 300},
 ChartBaseStyle -> EdgeForm[Thick], 
 Background -> Black,
 AxesStyle -> White, LabelStyle -> {Large}]

barchart

Edit

Change the style of the axes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文