Skip to content
Snippets Groups Projects
  1. Mar 31, 2016
  2. Mar 29, 2016
  3. Mar 14, 2016
  4. Mar 07, 2016
    • Matan Rubin's avatar
      BugFix - NPE when plotting small numbers · aafe0523
      Matan Rubin authored
      Before this patch XChart would get an NPE when trying to plot numbers
      which are smaller then 1E-10. This happened because gridStep was scaled
      using a hard coded 10, zeroing out numbers on smaller scale.
      Now we choose the right scale for small numbers and use that.
      
      This fixes a crash when running the following code:
      	double[] xData = new double[] { 1.0, 2.0};
      	double[] yData = new double[] { 1E-12, 1.1E-12};
      	Chart_XY chart = new ChartBuilder_XY().build();
      	chart.addSeries("Test", xData, yData);
      	new SwingWrapper(chart).displayChart();
      aafe0523
  5. Mar 03, 2016
  6. Mar 02, 2016
  7. Mar 01, 2016
  8. Feb 26, 2016
  9. Feb 25, 2016
  10. Feb 22, 2016
  11. Feb 04, 2016
Loading