Hi I am currently having trouble creating a CategoryDataset: this is part of my code: ... import org.jfree.data.category.CategoryDataset; import org.jfree.data.category.DefaultCategoryDataset; ... JFreeChart chart = ChartFactory.createLineChart("Vis","Experiment","Expression Level",dataset,PlotOrientation.VERTICAL,false,true,false); however, in JBuilder, it shows an error: createLineChart(java.lang.String,java.lang.String,java.lang,String,org.jfree.data.CategoryDataset,org.jfree.chart.plot.PlotOrientation,boolean,boolean)in org.jfree.chart.ChartFactory cannot be applied to (java.lang.String,java.lang.String,java.lang.String,org.jfree.data.category.CategoryDataset,org.free.chart.plot.PlotOrientation,boolean,boolean,boolean) I check the API: there is even not a class called: org.jfree.data.CategoryDataset And I do not import this class and definitely ...