Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/knowm/XChart into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
timmolter committed May 10, 2024
2 parents 3ce7e40 + b629663 commit ae3edf2
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Please make a code snippet demonstrating the bug using the following sample chart code:
```
public class TestForIssue834 {
public static void main(String[] args) throws ParseException {
XYChart chart = getXYChart();
new SwingWrapper(chart).displayChart();
}
public static XYChart getXYChart() {
XYChart chart =
new XYChartBuilder()
.width(720)
.height(480)
.title("Buggy Example")
.xAxisTitle("Count")
.yAxisTitle("Value")
.build();
double[] xValues = new double[] {1, 2, 3};
double[] yValues = new double[] {1, 2, 3};
chart.addSeries("main", xValues, yValues);
return chart;
}
}
```

**Screenshots**
Add screenshots to help explain your problem.


**Expected behavior**
A clear and concise description of what you expected to happen.

0 comments on commit ae3edf2

Please sign in to comment.