本文整理匯總了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;
}