本文整理汇总了Java中org.jfree.chart.axis.DateAxis.setTickLabelPaint方法的典型用法代码示例。如果您正苦于以下问题:Java DateAxis.setTickLabelPaint方法的具体用法?Java DateAxis.setTickLabelPaint怎么用?Java DateAxis.setTickLabelPaint使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jfree.chart.axis.DateAxis
的用法示例。
在下文中一共展示了DateAxis.setTickLabelPaint方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createChart
import org.jfree.chart.axis.DateAxis; //导入方法依赖的package包/类
private static JFreeChart createChart(TimeSeriesCollection dataset) {
// create the chart...
JFreeChart chart = ChartFactory.createTimeSeriesChart(null, // chart
// title
"Time (sec)", // domain axis label
"Throughput bytes/sec", // range axis label
dataset, // data
false, // include legend
false, // tooltips?
false // URLs?
);
// NOW DO SOME OPTIONAL CUSTOMISATION OF THE CHART...
// set the background color for the chart...
chart.setBackgroundPaint( VisualFirewall.BG_COLOR );
chart.setBorderPaint( VisualFirewall.FG_COLOR );
// OPTIONAL CUSTOMISATION COMPLETED.
XYPlot plot = chart.getXYPlot();
plot.setBackgroundPaint( VisualFirewall.BG_COLOR );
plot.getRangeAxis().setLabelPaint( VisualFirewall.FG_COLOR );
plot.getRangeAxis().setTickLabelPaint( VisualFirewall.FG_COLOR );
DateAxis axis = (DateAxis) plot.getDomainAxis();
axis.setLabelPaint( VisualFirewall.FG_COLOR );
axis.setDateFormatOverride(new SimpleDateFormat("hh:mm:ss"));
axis.setAutoRange(true);
axis.setFixedAutoRange(3600000);
axis.setTickLabelPaint( VisualFirewall.FG_COLOR );
return chart;
}