gpt4 book ai didi

gnuplot - 彩色刻度线

转载 作者:行者123 更新时间:2023-12-02 09:20:27 27 4
gpt4 key购买 nike

有什么方法可以让 gnuplot 为 x 和/或 y 轴上的刻度线着色吗?我使用的背景 png 文件非常暗,我希望内部的抽动在其上显示为白色,而不是默认的黑色。

最佳答案

tics 似乎从边框继承了它们的颜色:

set style line 50 lt 1 lc rgb "red" lw 2
set border ls 50
plot sin(x)

tic 标签从 ticstextcolor 选项获取颜色:

set tics textcolor rgb "red"

(字符串“white”也应该有效,但在我的演示中看起来不太好,因为我的背景是白色的)。

没有办法只改变 tic-color。但是,如果需要,您可以更改 tic/边框颜色,然后在顶部添加新边框:

set arrow from graph 0,graph 1 to graph 1,graph 1 nohead ls -1 lc rgb "black" front
set arrow from graph 1,graph 1 to graph 1,graph 0 nohead ls -1 lc rgb "black" front
set arrow from graph 1,graph 0 to graph 0,graph 0 nohead ls -1 lc rgb "black" front
set arrow from graph 0,graph 0 to graph 0,graph 1 nohead ls -1 lc rgb "black" front

关于gnuplot - 彩色刻度线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12408459/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com