Skip to content
Snippets Groups Projects
Commit 26d1c435 authored by Tim Molter's avatar Tim Molter
Browse files

revert example0 code

parent 1c63270f
No related branches found
No related tags found
No related merge requests found
......@@ -16,9 +16,9 @@
*/
package org.knowm.xchart.standalone;
import org.knowm.xchart.XYChart;
import org.knowm.xchart.QuickChart;
import org.knowm.xchart.SwingWrapper;
import org.knowm.xchart.XYChart;
/**
* Creates a simple Chart using QuickChart
......@@ -27,8 +27,8 @@ public class Example0 {
public static void main(String[] args) throws Exception {
double[] xData = new double[] { 1.0, 2.0 };
double[] yData = new double[] { 1E-12, 1.1E-12 };
double[] xData = new double[] { 0.0, 1.0, 2.0 };
double[] yData = new double[] { 2.0, 1.0, 0.0 };
// Create Chart
XYChart chart = QuickChart.getChart("Sample Chart", "X", "Y", "y(x)", xData, yData);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment