analysis: Add grid in density viewer
authorBernd Hufmann <Bernd.Hufmann@ericsson.com>
Fri, 15 Jan 2016 20:21:35 +0000 (15:21 -0500)
committerBernd Hufmann <bernd.hufmann@ericsson.com>
Sun, 17 Jan 2016 23:27:00 +0000 (18:27 -0500)
Change-Id: Ic497fc36386f2ad0daaddc5cb263f16cd21b7676
Signed-off-by: Bernd Hufmann <Bernd.Hufmann@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/64500
Reviewed-by: Hudson CI
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Tested-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
analysis/org.eclipse.tracecompass.analysis.timing.ui/src/org/eclipse/tracecompass/analysis/timing/ui/views/segmentstore/density/AbstractSegmentStoreDensityViewer.java

index 46bdd1fff09763c80cd55b55cffd0c3c3b75f5bd..70f025bff9f025283cbe2a08aaf854829fcaa8d8 100644 (file)
@@ -95,8 +95,8 @@ public abstract class AbstractSegmentStoreDensityViewer extends TmfViewer {
         fChart.getTitle().setVisible(false);
         fChart.getAxisSet().getXAxis(0).getTitle().setText(nullToEmptyString(Messages.AbstractSegmentStoreDensityViewer_TimeAxisLabel));
         fChart.getAxisSet().getYAxis(0).getTitle().setText(nullToEmptyString(Messages.AbstractSegmentStoreDensityViewer_CountAxisLabel));
-        fChart.getAxisSet().getXAxis(0).getGrid().setStyle(LineStyle.NONE);
-        fChart.getAxisSet().getYAxis(0).getGrid().setStyle(LineStyle.NONE);
+        fChart.getAxisSet().getXAxis(0).getGrid().setStyle(LineStyle.DOT);
+        fChart.getAxisSet().getYAxis(0).getGrid().setStyle(LineStyle.DOT);
 
         fDragZoomProvider = new MouseDragZoomProvider(this);
         fDragZoomProvider.register();
This page took 0.02596 seconds and 5 git commands to generate.