您好我通过以下代码创建了xyline图表图表:
JFreeChart chart = ChartFactory.createXYLineChart(
"", // chart title
"Viscosity @25 C°", // x axis label
"Tg C°", // y axis label
dataset, // data
PlotOrientation.VERTICAL,
true, // include legend
true, // tooltips
false // urls
);
现在,在我创建他之后,我想将类型更改为spiderWebPlot 怎么做?
我试图在图表变量中创建spiderWebPlot,但它不起作用 tnx很多
答案 0 :(得分:1)
将JFreeChart
括起来ChartPanel
并调用setChart()
以在需要时替换面板中的图表。完整示例显示为here和here。要更改图表面板的初始尺寸,请覆盖显示here的getPreferredSize()
。