Example usage for org.jfree.chart.entity LegendItemEntity LegendItemEntity

List of usage examples for org.jfree.chart.entity LegendItemEntity LegendItemEntity

Introduction

In this page you can find the example usage for org.jfree.chart.entity LegendItemEntity LegendItemEntity.

Prototype

public LegendItemEntity(Shape area) 

Source Link

Document

Creates a legend item entity.

Usage

From source file:ec.util.chart.swing.Charts.java

@Nonnull
public static LegendItemEntity createFakeLegendItemEntity(XYDataset dataset, Comparable<?> seriesKey) {
    LegendItemEntity result = new LegendItemEntity(new Area());
    result.setDataset(dataset);//from w ww .  j  ava2 s.c  o m
    result.setSeriesKey(seriesKey);
    return result;
}