设置 JFreeChart 上 Y 轴的格式

发布于 2024-12-08 22:12:16 字数 555 浏览 1 评论 0原文

我有一个类似于下面的 StackedXYAreaChart:

在此处输入图像描述

在 Y 轴上,而不是显示的刻度单位(2.55.07.510.0 等),我有以下内容: 100,000200,000300,000400,000等。这些表示字节,就像上面的一样。我的问题是:有没有办法可以格式化这些刻度单位,使其代表千字节,即 100200300400 等,甚至兆字节,即 0.10.20.30.4、 ETC。?我不想在 Y 轴上将 10 MB 显示为 10,000,000

谢谢!

I have a StackedXYAreaChart similar to the one below:

enter image description here

On the Y-axis, instead of the tick units shown (2.5, 5.0, 7.5, 10.0, etc.), I have the following: 100,000, 200,000, 300,000, 400,000, etc. These represent Bytes, just like the one above. My question is: is there a way I could format these tick units such that they represent Kilobytes, i.e. 100, 200, 300, 400, etc. or even Megabytes, i.e. 0.1, 0.2, 0.3, 0.4, etc.? I don't want to display 10 MB as 10,000,000 on the Y-axis.

Thanks!

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

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

发布评论

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

评论(2

氛圍 2024-12-15 22:12:16

静态工厂 < code>createStackedAreaChart() 为范围实例化一个NumberAxisNumberAxis 方法 createStandardTickUnits() 创建标准刻度单位,这可以作为创建您自己的单位的示例。特别是,“如果您不喜欢这些默认值,请创建您自己的 TickUnits 实例,然后将其传递给 setStandardTickUnits() 方法。”有更多详细信息此处。

The static factory createStackedAreaChart() instatiates a NumberAxis for the range. The NumberAxis method createStandardTickUnits() creates the standard tick units, which may serve as an example for creating your own units. In particular, "If you don't like these defaults, create your own instance of TickUnits and then pass it to the setStandardTickUnits() method." There's more details here.

浪漫人生路 2024-12-15 22:12:16

我会进行字节转换,从

KB to MB=(KB/1024)
KB to TB=(KB/(1024*2))
KB to GB=(KB/(1024*3))
KB to PB=(KB/(1024*4))

NumberAxis 应根据传递的值自动范围进行转换。

I would of done a byte conversion, converting from

KB to MB=(KB/1024)
KB to TB=(KB/(1024*2))
KB to GB=(KB/(1024*3))
KB to PB=(KB/(1024*4))

Where the the NumberAxis should auto range depending on the value passed.

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