Questions tagged [orson-charts]

Orson Charts is a Java library for generating 3D charts in client-side (JavaFX and Swing) and server-side applications.

Orson Charts is a Java library for generating 3D charts in client-side (JavaFX and Swing) and server-side applications. The project may be found here, and a gallery of demos appears here.

5 questions
1
vote
0 answers

How to generate xy line chart using OrsonPDF using itextPDF and Jfreechart for response on request?

I want to draw a xy line chart on PDF. After clicking on a button on a JSP, a PDF will be generated with xy line chart. So I have used jfreechart to create xy line chart and then wants to print it in PDF format using OrsonPDF. I have seen the same…
Amit K Kushwaha
  • 113
  • 1
  • 7
0
votes
1 answer

Is it possible to specify the range of the Y-Axis

I have my Area chart created in the code below chart = Chart3DFactory.createAreaChart("", // Main title "", // Sub title dataset, null, "Date", // X-Axis legend "Time (seconds)"); // Y-Axis legend …
Frederic
  • 2,015
  • 4
  • 20
  • 37
0
votes
1 answer

How to compile orson chart library for Swing app

I want to use orson chart (3d chart) in my Swing application with netBeans IDE. I am a beginner in java, and I dont know how to compile orson chart library and make a jar file out of it, so I can use it in a project in NetBeans. This is the link to…
Saeed
  • 53
  • 1
  • 6
0
votes
1 answer

Orsoncharts chart3D surface rendering not working

I am using orson chart's Chart3D to make a surface plot, and for some reason the graph isn't properly coloring the gradient. The code is below: @SuppressWarnings("serial") Function3D function = new Function3D() { @Override public double…
-2
votes
1 answer

how to put a Chart3D in a jpanel

i'm working on a java swing app and i found a problem to put a Chart3D in a jpanel or a frame, this is my code private void initChart(){ CategoryDataset3D dataset = createDataset(); Chart3D chart = Chart3DFactory.createStackedBarChart( …