我正在使用JAVA,SWT和SWTChart来显示潜水资料。要以正确的形状显示潜水资料,我使用负深度值,这是必要但不正确的。因此,我想删除或反转y轴标题处的符号。
以下是一个例子:
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.swtchart.Chart;
import org.swtchart.ILineSeries;
import org.swtchart.LineStyle;
import org.swtchart.ISeries.SeriesType;
/**
* An example for line chart.
*/
public class ScatterChartExample {
private static final double[] xSeries = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 };
private static final double[] ySeries = { 0, -1.3, -2.0, -3.9, -5.6, -4.1, -5.3, -7.0, -3.9, -3.6, -1.1, 0};
/**
* The main method.
*
* @param args
* the arguments
*/
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setText("Dive Profile");
shell.setSize(500, 400);
shell.setLayout(new FillLayout());
createChart(shell);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
/**
* create the chart.
*
* @param parent
* The parent composite
* @return The created chart
*/
static public Chart createChart(Composite parent) {
// create a chart
Chart chart = new Chart(parent, SWT.NONE);
// set titles
chart.getTitle().setText("Dive profile");
chart.getAxisSet().getXAxis(0).getTitle().setText("Time");
chart.getAxisSet().getYAxis(0).getTitle().setText("Depth");
// create scatter series
ILineSeries series = (ILineSeries) chart.getSeriesSet()
.createSeries(SeriesType.LINE, "series");
series.setLineStyle(LineStyle.SOLID);
series.enableArea(true);
series.setXSeries(xSeries);
series.setYSeries(ySeries);
// adjust the axis range
chart.getAxisSet().adjustRange();
return chart;
}
}
任何想法???
此致
答案 0 :(得分:0)
好的,这是一个使用字体" Arial"的修改版本的解决方案。我刚刚删除了" - "字符。
这是代码:
private static final double[] xSeries = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 };
private static final double[] ySeries = { 0, -1.3, -2.0, -3.9, -5.6, -4.1, -5.3, -7.0, -3.9, -3.6, -1.1, 0 };
private static Font font;
/**
* The main method.
*
* @param args
* the arguments
*/
public static void main(String[] args)
{
Display display = new Display();
Shell shell = new Shell(display);
shell.setText("Dive Profile");
shell.setSize(500, 400);
shell.setLayout(new FillLayout());
display.loadFont("baz.ttf");
font = new Font(display, "Baz", 12, SWT.NONE);
createChart(shell);
shell.open();
while (!shell.isDisposed())
{
if (!display.readAndDispatch())
{
display.sleep();
}
}
display.dispose();
font.dispose();
}
/**
* create the chart.
*
* @param parent
* The parent composite
* @return The created chart
*/
static public Chart createChart(Composite parent)
{
// create a chart
Chart chart = new Chart(parent, SWT.NONE);
// set titles
chart.getTitle().setText("Dive profile");
chart.getAxisSet().getXAxis(0).getTitle().setText("Time");
chart.getAxisSet().getYAxis(0).getTitle().setText("Depth");
chart.getAxisSet().getYAxis(0).getTick().setFont(font);
chart.getAxisSet().getXAxis(0).getTick().setFont(font);
// create scatter series
ILineSeries series = (ILineSeries) chart.getSeriesSet().createSeries(SeriesType.LINE, "series");
series.setLineStyle(LineStyle.SOLID);
series.enableArea(true);
series.setXSeries(xSeries);
series.setYSeries(ySeries);
// adjust the axis range
chart.getAxisSet().adjustRange();
return chart;
}
这是字体(如果需要,可以创建自己的字体):
https://dl.dropboxusercontent.com/u/498403/baz.ttf
看起来像这样:
<强>更新强>
作为替代方案,您始终可以使用ChartComposite
在SWT中使用JFreeChart。 Her是一个教程。