Example usage for org.jfree.chart ChartTheme apply

List of usage examples for org.jfree.chart ChartTheme apply

Introduction

In this page you can find the example usage for org.jfree.chart ChartTheme apply.

Prototype

public void apply(JFreeChart chart);

Source Link

Document

Applies this theme to the supplied chart.

Usage

From source file:org.gumtree.vis.hist2d.Hist2D.java

public void applyChartTheme(ChartTheme theme) {
    theme.apply(chart);
    this.chartTheme = theme;
}