use of name.abuchen.portfolio.ui.views.dataseries.DataSeriesConfigurator in project portfolio by buchen.
the class PerformanceChartView method createBody.
@Override
protected Composite createBody(Composite parent) {
Composite composite = new Composite(parent, SWT.NONE);
composite.setBackground(Display.getDefault().getSystemColor(SWT.COLOR_WHITE));
chart = new TimelineChart(composite);
chart.getTitle().setText(getTitle());
chart.getTitle().setVisible(false);
// $NON-NLS-1$
chart.getAxisSet().getYAxis(0).getTick().setFormat(new DecimalFormat("0.#%"));
// $NON-NLS-1$
chart.getToolTip().setValueFormat(new DecimalFormat("0.##%"));
DataSeriesCache cache = make(DataSeriesCache.class);
seriesBuilder = new PerformanceChartSeriesBuilder(chart, cache);
picker = new DataSeriesConfigurator(this, DataSeries.UseCase.PERFORMANCE);
picker.addListener(this::updateChart);
DataSeriesChartLegend legend = new DataSeriesChartLegend(composite, picker);
// $NON-NLS-1$ //$NON-NLS-2$
updateTitle(Messages.LabelPerformanceChart + " (" + picker.getConfigurationName() + ")");
chart.getTitle().setText(getTitle());
GridLayoutFactory.fillDefaults().numColumns(1).margins(0, 0).spacing(0, 0).applyTo(composite);
GridDataFactory.fillDefaults().grab(true, true).applyTo(chart);
GridDataFactory.fillDefaults().grab(true, false).align(SWT.CENTER, SWT.FILL).applyTo(legend);
setChartSeries();
return composite;
}
use of name.abuchen.portfolio.ui.views.dataseries.DataSeriesConfigurator in project portfolio by buchen.
the class ReturnsVolatilityChartView method createBody.
@Override
protected Composite createBody(Composite parent) {
cache = make(DataSeriesCache.class);
Composite composite = new Composite(parent, SWT.NONE);
composite.setBackground(Display.getDefault().getSystemColor(SWT.COLOR_WHITE));
resources = new LocalResourceManager(JFaceResources.getResources(), composite);
chart = new ScatterChart(composite);
chart.getTitle().setVisible(false);
IAxis xAxis = chart.getAxisSet().getXAxis(0);
xAxis.getTitle().setText(Messages.LabelVolatility);
// $NON-NLS-1$
xAxis.getTick().setFormat(new DecimalFormat("0.##%"));
IAxis yAxis = chart.getAxisSet().getYAxis(0);
yAxis.getTitle().setText(Messages.LabelPeformanceTTWROR);
// $NON-NLS-1$
yAxis.getTick().setFormat(new DecimalFormat("0.##%"));
((IPlotArea) chart.getPlotArea()).addCustomPaintListener(new ICustomPaintListener() {
@Override
public void paintControl(PaintEvent e) {
int y = xAxis.getPixelCoordinate(0);
e.gc.drawLine(y, 0, y, e.height);
int x = yAxis.getPixelCoordinate(0);
e.gc.drawLine(0, x, e.width, x);
}
@Override
public boolean drawBehindSeries() {
return true;
}
});
configurator = new DataSeriesConfigurator(this, DataSeries.UseCase.RETURN_VOLATILITY);
configurator.addListener(() -> updateChart());
DataSeriesChartLegend legend = new DataSeriesChartLegend(composite, configurator);
// $NON-NLS-1$ //$NON-NLS-2$
updateTitle(Messages.LabelHistoricalReturnsAndVolatiltity + " (" + configurator.getConfigurationName() + ")");
chart.getTitle().setText(getTitle());
GridLayoutFactory.fillDefaults().numColumns(1).margins(0, 0).spacing(0, 0).applyTo(composite);
GridDataFactory.fillDefaults().grab(true, true).applyTo(chart);
GridDataFactory.fillDefaults().grab(true, false).align(SWT.CENTER, SWT.FILL).applyTo(legend);
setChartSeries();
return composite;
}
use of name.abuchen.portfolio.ui.views.dataseries.DataSeriesConfigurator in project portfolio by buchen.
the class StatementOfAssetsHistoryView method createBody.
@Override
protected Composite createBody(Composite parent) {
Composite composite = new Composite(parent, SWT.NONE);
composite.setBackground(Display.getDefault().getSystemColor(SWT.COLOR_WHITE));
chart = new TimelineChart(composite);
chart.getTitle().setVisible(false);
DataSeriesCache cache = make(DataSeriesCache.class);
seriesBuilder = new StatementOfAssetsSeriesBuilder(chart, cache);
configurator = new DataSeriesConfigurator(this, DataSeries.UseCase.STATEMENT_OF_ASSETS);
configurator.addListener(() -> updateChart());
DataSeriesChartLegend legend = new DataSeriesChartLegend(composite, configurator);
// $NON-NLS-1$ //$NON-NLS-2$
updateTitle(Messages.LabelStatementOfAssetsHistory + " (" + configurator.getConfigurationName() + ")");
chart.getTitle().setText(getTitle());
GridLayoutFactory.fillDefaults().numColumns(1).margins(0, 0).spacing(0, 0).applyTo(composite);
GridDataFactory.fillDefaults().grab(true, true).applyTo(chart);
GridDataFactory.fillDefaults().grab(true, false).align(SWT.CENTER, SWT.FILL).applyTo(legend);
configurator.getSelectedDataSeries().forEach(series -> seriesBuilder.build(series, getReportingPeriod()));
return composite;
}
Aggregations