JFreeChart 堆积面积图不连续

发布于 2024-12-08 21:32:47 字数 508 浏览 0 评论 0原文

我用了 createStackedAreaChart(),但是我得到的堆积面积图不是连续的。类别之间存在差距(就像堆积条形图一样)。但是,如果我对同一数据集(DefaultCategoryDataset)使用createAreaChart(),则面积图就可以了。堆积面积图有什么问题?我真的很感激任何帮助。

I used the createStackedAreaChart(), but the stacked area chart I got is not continous. There are gaps between categories (just look like stacked bar chart). But If I use createAreaChart() for the same dataset (DefaultCategoryDataset), the area chart is fine. What's wrong with the stacked area chart? I would really appreciate any help.

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

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

发布评论

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

评论(3

随波逐流 2024-12-15 21:32:47

我得到了它。不知何故,我必须设置类别边距以避免图表中出现间隙。
domainAxis.setCategoryMargin(0);

I got it. Somehow, I have to set the category margin to avoid the gaps in the chart.
domainAxis.setCategoryMargin(0);

丢了幸福的猪 2024-12-15 21:32:47

使用 createDataset()BarChartDemo1 ,静态工厂方法ChartFactory.createStackedAreaChart() 生成以下没有间隙的图表。您应该批判性地检查您的数据集。

StackedAreaChart

Using the CategoryDataset returned by createDataset() in BarChartDemo1, the static factory method ChartFactory.createStackedAreaChart() produces the following chart with no gaps. You should examine your data set critically.

StackedAreaChart

感性不性感 2024-12-15 21:32:47

在StackedAreaRenderer.java中,Path的坐标有小数,ANTIALIAS中path不连续。像 AreaRenderer.java 一样使用 Math.round 修改 StackedAreaRenderer#drawItem。

In StackedAreaRenderer.java, the coordinate of Path has decimals, path is discontinuous in ANTIALIAS. Modify StackedAreaRenderer#drawItem with Math.round like AreaRenderer.java.

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