跨 JFreeChart
我有以下 StackedXYAreaChart: 如何使我的绘图从左到右一直延伸,以便图表边框和绘图之间没有空白?谢谢!
I have the following StackedXYAreaChart:
How do I make my plot span all the way from the left to all the way to the right so that there are no white spaces between the borders of the chart and the plot? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
createStackedAreaChart()
方法创建一个具有StackedAreaRenderer
,其域轴是CategoryAxis
。您可以使用轴的setLowerMargin()
和setUpperMargin()
方法调整外观。The
createStackedAreaChart()
method creates a chart having aStackedAreaRenderer
, for which the domain axis is aCategoryAxis
. You can adjust the appearance using thesetLowerMargin()
andsetUpperMargin()
methods of the axis.