-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExpenditureOnBook.java
76 lines (72 loc) · 2.77 KB
/
ExpenditureOnBook.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package finalproject;
import java.awt.Color;
import java.io.IOException;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import org.knowm.xchart.CategoryChart;
import org.knowm.xchart.CategoryChartBuilder;
import org.knowm.xchart.CategorySeries.CategorySeriesRenderStyle;
import org.knowm.xchart.XChartPanel;
import org.knowm.xchart.demo.charts.ExampleChart;
import org.knowm.xchart.style.Styler;
import org.knowm.xchart.style.Styler.ChartTheme;
import org.knowm.xchart.style.Styler.LegendPosition;
/**
*
* @author shlok
*/
public class ExpenditureOnBook implements ExampleChart<CategoryChart> {
public XChartPanel getPanel() throws IOException {
ExampleChart<CategoryChart> exampleChart = new ExpenditureOnBook();
CategoryChart chart = exampleChart.getChart();
XChartPanel panel=new XChartPanel(chart);
return panel;
}
@Override
public CategoryChart getChart() {
Connection con = DbConnect.getConnection();
// Create Chart
CategoryChart chart = new CategoryChartBuilder()
.width(1366).height(748).
title("EXPENDITURE ON BOOKS EVERY YEAR").
theme(ChartTheme.GGPlot2).build();
// Customize Chart
chart.getStyler().setChartTitleVisible(true);
chart.getStyler().setLegendPosition(LegendPosition.OutsideS);
chart.getStyler().setDefaultSeriesRenderStyle(CategorySeriesRenderStyle.Stick);
chart.getStyler().setPlotGridLinesColor(new Color(255, 255, 255));
chart.getStyler().setChartFontColor(Color.BLACK);
chart.getStyler().setToolTipsEnabled(true);
chart.getStyler().setPlotGridLinesVisible(false);
chart.getStyler().setToolTipType(Styler.ToolTipType.yLabels);
chart.getStyler().setXAxisLabelRotation(45);
// Series
List<String> xData = new ArrayList<String>();
List<Double> yData = new ArrayList<Double>();
try {
Statement statement = con.createStatement();
ResultSet resultSet = statement.executeQuery("SELECT * FROM expenditureonbooks");
int i = 0;
while (resultSet.next())
{
xData.add(i,resultSet.getString("year"));
yData.add(i,Double.parseDouble(resultSet.getString("amount")));
}
}
catch (NumberFormatException | SQLException e)
{
System.out.println(e);
}
chart.addSeries("EXPENDITURE ON BOOKS", xData, yData);
return chart;
}
}