Skip to content

Commit

Permalink
Plot
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikola-Mircic committed Jan 26, 2024
1 parent d5f7041 commit 840fbc6
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/efakturaplus/gui/MainPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ public class MainPanel extends JPanel {

private InvoiceList purchaseIl;
private InvoiceList salesIl;

private StatisticsPanel statsPanel;

public MainPanel(Window parent) {
this.parent = parent;
Expand All @@ -58,6 +60,9 @@ public MainPanel(Window parent) {
salesIl = new InvoiceList();
dataPanel.add(salesIl, "SALES");

statsPanel = new StatisticsPanel();
dataPanel.add(statsPanel, "STATS");

dataPanelLayout.show(dataPanel, "PURCHASE");

this.add(dataPanel, BorderLayout.CENTER);
Expand Down Expand Up @@ -117,7 +122,7 @@ public void actionPerformed(ActionEvent e) {
this.statsBtn = makeButton(statsButtonImg, "Statistics", new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
dataPanelLayout.show(dataPanel, "PURCHASE");
dataPanelLayout.show(dataPanel, "STATS");
}
});

Expand Down
97 changes: 97 additions & 0 deletions src/efakturaplus/gui/StatisticsPanel.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
package efakturaplus.gui;

import java.awt.*;
import java.util.ArrayList;
import java.util.Random;

import javax.swing.JPanel;

public class StatisticsPanel extends JPanel {

private static final int MAX_SCORE = 20;
private static final int PREF_W = 800;
private static final int PREF_H = 650;
private static final int BORDER_GAP = 30;
private static final Color GRAPH_COLOR = Color.green;
private static final Color GRAPH_POINT_COLOR = new Color(150, 50, 50, 180);
private static final Stroke GRAPH_STROKE = new BasicStroke(3f);
private static final int GRAPH_POINT_WIDTH = 12;
private static final int Y_HATCH_CNT = 10;

private ArrayList<Double> scores;

public StatisticsPanel() {
scores = new ArrayList<Double>();

Random rand = new Random();

for(int i=0;i<20;++i) {
scores.add(Math.sqrt(i)*3);
}
}

@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2 = (Graphics2D)g;
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);

double xScale = ((double) getWidth() - 2 * BORDER_GAP) / (scores.size());
double yScale = ((double) getHeight() - 2 * BORDER_GAP) / (MAX_SCORE);

ArrayList<Point> graphPoints = new ArrayList<Point>();
for (int i = 0; i < scores.size(); i++) {
int x1 = (int) (i * xScale + BORDER_GAP);
int y1 = (int) ((MAX_SCORE - scores.get(i)) * yScale + BORDER_GAP);
graphPoints.add(new Point(x1, y1));
}

// create x and y axes
g2.drawLine(BORDER_GAP, getHeight() - BORDER_GAP, BORDER_GAP, BORDER_GAP);
g2.drawLine(BORDER_GAP, getHeight() - BORDER_GAP, getWidth() - BORDER_GAP, getHeight() - BORDER_GAP);

// create hatch marks for y axis.
for (int i = 0; i < Y_HATCH_CNT; i++) {
int x0 = BORDER_GAP;
int x1 = GRAPH_POINT_WIDTH + BORDER_GAP;
int y0 = getHeight() - (((i + 1) * (getHeight() - BORDER_GAP * 2)) / Y_HATCH_CNT + BORDER_GAP);
int y1 = y0;
g2.drawLine(x0, y0, x1, y1);
}

// and for x axis
for (int i = 0; i < scores.size() - 1; i++) {
int x0 = (i + 1) * (getWidth() - BORDER_GAP * 2) / (scores.size() - 1) + BORDER_GAP;
int x1 = x0;
int y0 = getHeight() - BORDER_GAP;
int y1 = y0 - GRAPH_POINT_WIDTH;
g2.drawLine(x0, y0, x1, y1);
}

Stroke oldStroke = g2.getStroke();
g2.setColor(GRAPH_COLOR);
g2.setStroke(GRAPH_STROKE);
for (int i = 0; i < graphPoints.size() - 1; i++) {
int x1 = graphPoints.get(i).x;
int y1 = graphPoints.get(i).y;
int x2 = graphPoints.get(i + 1).x;
int y2 = graphPoints.get(i + 1).y;
g2.drawLine(x1, y1, x2, y2);
}

g2.setStroke(oldStroke);
g2.setColor(GRAPH_POINT_COLOR);
for (int i = 0; i < graphPoints.size(); i++) {
int x = graphPoints.get(i).x - GRAPH_POINT_WIDTH / 2;
int y = graphPoints.get(i).y - GRAPH_POINT_WIDTH / 2;;
int ovalW = GRAPH_POINT_WIDTH;
int ovalH = GRAPH_POINT_WIDTH;
g2.fillOval(x, y, ovalW, ovalH);
}
}

@Override
public Dimension getPreferredSize() {
return new Dimension(PREF_W, PREF_H);
}
}

0 comments on commit 840fbc6

Please sign in to comment.