Java tutorial
/* Copyright 2016 the original author or authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package de.hs.mannheim.modUro.reader; import de.hs.mannheim.modUro.config.CellTypeColor; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartPanel; import org.jfree.chart.JFreeChart; import org.jfree.chart.block.BlockBorder; import org.jfree.chart.plot.XYPlot; import org.jfree.chart.renderer.xy.XYItemRenderer; import org.jfree.data.xy.XYDataset; import org.jfree.data.xy.XYSeries; import org.jfree.data.xy.XYSeriesCollection; import org.jfree.ui.HorizontalAlignment; import javax.swing.*; import java.awt.*; import java.util.List; import java.util.stream.Collectors; import java.util.stream.DoubleStream; /** * @author Markus Gumbel (m.gumbel@hs-mannheim.de) */ public class JCellCountDiagram extends JPanel { public JFreeChart chart; public JCellCountDiagram(List<String> cellTypes, List<CellCountEntry> cellcountList) { XYDataset dataset = createDataset(cellTypes, cellcountList); chart = createChart(dataset, cellTypes); add(new ChartPanel(chart)); } private XYDataset createDataset(List<String> cellTypes, List<CellCountEntry> cellcountList) { XYSeriesCollection dataset = new XYSeriesCollection(); XYSeries xySerieSum = new XYSeries("total"); for (String cellType : cellTypes) { XYSeries xySerie = new XYSeries(cellType); for (CellCountEntry e : cellcountList) { double x = e.time; double y = 0; if (e.count.containsKey(cellType)) { y = (double) e.count.get(cellType); } xySerie.add(x, y); } dataset.addSeries(xySerie); } for (CellCountEntry e : cellcountList) { double x = e.time; double y = e.count.values().stream().mapToDouble(i -> i.intValue()).sum(); if (y != Double.NaN) { xySerieSum.add(x, y); } } dataset.addSeries(xySerieSum); return dataset; } protected JFreeChart createChart(XYDataset dataset, List<String> cellTypes) { String title = "Cell count"; JFreeChart xyLineChart = ChartFactory.createXYLineChart(title, // title "t", // x-axis label "n", // y-axis label dataset); String fontName = "Palatino"; xyLineChart.getTitle().setFont(new Font(fontName, Font.BOLD, 18)); XYPlot plot = (XYPlot) xyLineChart.getPlot(); plot.setDomainPannable(true); plot.setRangePannable(true); plot.setDomainCrosshairVisible(true); plot.setRangeCrosshairVisible(true); plot.getDomainAxis().setLowerMargin(0.0); plot.getDomainAxis().setLabelFont(new Font(fontName, Font.BOLD, 14)); plot.getDomainAxis().setTickLabelFont(new Font(fontName, Font.PLAIN, 12)); plot.getRangeAxis().setLowerMargin(0.0); // plot.getRangeAxis().setRange(0.0, 1.01); plot.getRangeAxis().setLabelFont(new Font(fontName, Font.BOLD, 14)); plot.getRangeAxis().setTickLabelFont(new Font(fontName, Font.PLAIN, 12)); xyLineChart.getLegend().setItemFont(new Font(fontName, Font.PLAIN, 14)); xyLineChart.getLegend().setFrame(BlockBorder.NONE); xyLineChart.getLegend().setHorizontalAlignment(HorizontalAlignment.CENTER); XYItemRenderer r = plot.getRenderer(); // set the default stroke for all series int i = 0; for (String celltype : cellTypes) { r.setSeriesPaint(i, CellTypeColor.getColor(celltype)); i++; } r.setSeriesPaint(i, Color.BLACK); return xyLineChart; } }