use of org.eclipse.linuxtools.internal.systemtap.graphing.ui.charts.listeners.PieChartMouseMoveListener in project linuxtools by eclipse.
the class PieChartBuilder method createChart.
@Override
protected void createChart() {
this.chart = new PieChart(this, getStyle());
((PieChart) chart).setCustomColors(COLORS);
chartMouseMoveListener = new PieChartMouseMoveListener((PieChart) chart, chart);
}
Aggregations