XYLineChart Scaling Higher in open JDK 14 compare to open JDK 1.8

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
saravana
Posts: 1
Joined: Thu Jul 23, 2020 6:27 pm
antibot: No, of course not.

XYLineChart Scaling Higher in open JDK 14 compare to open JDK 1.8

Post by saravana » Thu Jul 23, 2020 7:29 pm

Hi,

I ma using jfreechart 1.0.19. I have create XYLineChart and added into SWT composite using below code:

Code: Select all

       Composite chartComposite = new Composite(parent, SWT.EMBEDDED);
		GridData gd_chartComposite = new GridData(SWT.FILL, SWT.FILL, true, true);
		chartComposite.setLayoutData(gd_chartComposite);
		Frame frame = SWT_AWT.new_Frame(chartComposite);
		ChartPanel chartPanel = new ChartPanel(XYLineChart ,false);
		frame.add(chartPanel);
It is working properly in open JDK 1.8 but same code is not working in open jdk 14.

Locked