2012-05-04 62 views
1

我創建一個條形圖:訪問圖例項文本

final JFreeChart result = ChartFactory.createBarChart(TITLE, // chart title 
    X_TITLE, // domain axis label 
    Y_TITLE, // range axis label 
    dataset, // data 
    PlotOrientation.HORIZONTAL, // the plot orientation 
    true, // legend 
    true, // tooltips 
    false // urls 
    ); 

我再補充一個ChartMouseListener描述here

當我點擊圖例項目時,顯示「LegendItemEntity:seriesKey = null,dataset = null」。

如何訪問相應項目的圖例文字?

回答