tmf.ui: hide title and legend in swtcharts by default
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / viewers / xycharts / linecharts / TmfCommonXLineChartViewer.java
index 9671165c8e08d2d663300eb63b1deabf09f3f650..72a89a297d2beeb6543b6e32bdfe940cb68bb909 100644 (file)
@@ -80,6 +80,7 @@ public abstract class TmfCommonXLineChartViewer extends TmfXYChartViewer {
      */
     public TmfCommonXLineChartViewer(Composite parent, String title, String xLabel, String yLabel) {
         super(parent, title, xLabel, yLabel);
+        getSwtChart().getTitle().setVisible(false);
         getSwtChart().getLegend().setPosition(SWT.BOTTOM);
         getSwtChart().getAxisSet().getXAxes()[0].getTitle().setVisible(false);
         setResolution(RESOLUTION);
This page took 0.024108 seconds and 5 git commands to generate.