When this example is loaded "Left Axis" is usually not visible until the window is re-sized. If the maximum and minimum offsets are removed "Left Axis" is displayed as expected.
Code: Select all
Line line1 = new Line();
line1.fillSampleValues();
TChart chart = new TChart();
chart.getAspect().setView3D( false );
chart.addSeries( line1 );
chart.getAxes().getLeft().getTitle().setText( "Left Axis" );
chart.getAxes().getLeft().setMinimumOffset( 3 );
chart.getAxes().getLeft().setMaximumOffset( 3 );
JFrame f = new JFrame();
f.add( chart );
f.pack();
f.setVisible( true );