问题标签 [axes]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
5047 浏览

matlab - 如何在 MATLAB 中设置轴的实际比例?

我有 4 组 3D 散点数据,我想在 MATLAB 子图中绘制。但是,我希望每个数据集中的比例相同,以便每个数据集中的大小可以在图之间进行粗略的视觉比较。

使这有点困难的是每个图的限制是任意的,因此不能设置为特定值。

有没有办法明确设置 MATLAB 绘图的比例?像“将每个像素设置为 4 个单位”之类的东西会很棒。

0 投票
1 回答
15832 浏览

matlab - Matlab: How to align the axes of subplots when one of them contains a colorbar?

Minimal example:

output

In this example I'd like to have the lower subplot show the cross-section of peaks along y=0 and the plot ending at the same position as the pcolor subplot, so that the x ticks are on identical positions. In fact, I don't need the duplicate x axis then. So,

How to rescale the lower subplot such that the right limit matches the right limit of the upper one's plot part? (preferably such that the colorbar can be switched on/off without destroying that alignment)

(FYI I learned I can use the linkaxes command then to have a correct zoom behaviour in a second step)

0 投票
2 回答
6633 浏览

matlab - 为什么我的坐标区对象的 ButtonDownFcn 回调在绘制后停止工作?

我正在图中创建一组轴并为其'ButtonDownFcn'属性分配回调,如下所示:

回调函数定义如下:

回调工作正常,直到我在轴上绘制一些东西,如下所示:

之后,当我单击轴时,回调不再触发。出了什么问题,我该如何解决?

0 投票
1 回答
2170 浏览

java - 在 JFreeChart 中手动指定对数轴上的刻度线

使用 JFreeChart 我有一个带有 LogAxis 的图,在 XYPlot 的域轴上带有刻度线,这些刻度线是根据图形的宽度自动确定的。我的域值是 0.01、0.05、0.1、0.5、1、5 和 10;因此,刻度线与我拥有的域值不一致。有没有办法手动指定轴的刻度线而不是自动计算它们?我尝试了 SimpleAxis 类,但它似乎只提供线性轴,而不是对数。

0 投票
1 回答
4747 浏览

python - 如何使用 Matplotlib 在图形中间绘制轴

我想绘制一条与 y 轴平行且位于 x 轴中间的静态垂直线。图中一平移时这条线不应该移动。我的目标是在图的中间有这条垂直线作为参考线。我将有一些其他数字代表将取决于 x 轴中间的 x 值的数据。

0 投票
1 回答
1046 浏览

graph - 谷歌图表 - 如何有轴标签和值?

我目前正在使用 Google Charts 在 XY 折线图上显示 2 行数据。我几乎完成了,但我需要在 X 轴和 Y 轴上放置标签。
沿着垂直 Y 轴,我想用“分钟”替换 0 到 100,沿着水平 X 轴,我想用“小时”替换 0 到 100。

多年来我一直在搞乱,无法弄清楚这件小事。这是我目前的代码。有人可以拯救我的大脑免于融化吗?这是我的代码,您可以查看图表,谢谢。

0 投票
2 回答
854 浏览

matlab - 如何部分应用链接轴?

假设我有四个地块 h1-h4 并且想要链接它们所有的 x 轴。为此,我可以使用linkaxes([h1 h2 h3 h4], 'x'). 但是,除此之外,我还想链接 h1 和 h3 的 y 轴(以及 h2 到 h4 的)。现在,当我使用linkaxes([h1 h3], 'y')x 轴时,链接会丢失。如何同时实现两个链接?

0 投票
2 回答
10389 浏览

matlab - 在 Matlab 中重置轴

有一个名为 image 的轴,当用户按下浏览按钮时,我会在其中显示图像。

imshow(orgImg,'父',handles.image);

然后我做图像处理的东西。

完成所有处理后,有一个清除按钮可以清除图像轴中显示的图像。我用cla(handles.image,'reset'); 这清除了轴上的图像。但是,它将 XTick 和 YTick 显示为 0、0.5、1、1.5 等,并且将 XColor 和 YColor 显示为黑色。

我不希望 XTick 和 YTick 值显示在轴上,颜色也应该是白色的。但我需要显示没有上述值的轴。现在它显示了具有上述值的轴。

如何删除这些属性?

0 投票
2 回答
298 浏览

xslt - XPATH 轴 - 问题

XML结构:

我的要求是获取标题元素的值并显示如下(分组相似数据并显示)

我使用了以下兄弟选项来获得预期的输出。由于 XML 结构很大(我只粘贴了片段),我无法使用 ../../ 对路径进行硬编码,并且全部都在 XSLT 中。请帮助我获得预期的输出。

0 投票
0 回答
115 浏览

flot - Any way in flot to share 0 line between two y axes?

I need two y axes for my flot chart. I'd like for them to share the 0 line. Each has a different scale. Also, the zero line won't always be the min for both axes (sometimes one of the axes needs to start at -1 eg). Any way to achieve this?