jmathplot icon indicating copy to clipboard operation
jmathplot copied to clipboard

Java interactive 2D and 3D plots (no OpenGL)

Results 16 jmathplot issues
Sort by recently updated
recently updated
newest added

Some of the examples are using the setAxesLabels() method but this method is not available, instead there is setAxisLabels() method, so the examples should be adjusted accordingly.

I have a problem , i working with intellijIdea and get below error : Exception in thread "main" java.lang.NoClassDefFoundError: org/math/io/StringPrintable at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoader.java:763) at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142) at java.net.URLClassLoader.defineClass(URLClassLoader.java:467) at...

I try this to draw the function 1/x and ln(x). For 1/x this library works well with zero division, but for ln(x) the library failed with number

Shouldn't the icons (resources) in package org.math.plot.icons be contained in the distributed JAR file? They used to be in the older ZIP files but I cannot find them and a...

``` What steps will reproduce the problem? 1. Plot2DPanel.addLinePlot("", new double[]{1,2,3}, new double[] {4,5,6}) 2. Plot2DPanel.addLinePlot("", new double[]{1,2}, new double[] {4,5}) 3. What is the expected output? What do you...

Type-Defect
Priority-Medium
auto-migrated

The color of the bars is translucent, how can we make it solid? I tried using the opaque feature but I don't think that it works.

… to have a gradient coloring from low to high points (see main function in GridPlot3D.java as other plots' samples just use random colors rather than gradient) I had used...

When the lineplot is created and there are only two points in the line, the library mixes xvalues and yvalues (it takes x1 and y1 from x[] and x2 and...

How can I change the width of the lines??

I introduced an enum for all plot types (`PlotPanel.Type`). That way we have stronger typing than with Strings and the plot types are iterable. The function `addPlot(String, String, Color, double[]...)`...