當前位置: 首頁>>代碼示例>>Java>>正文


Java DateAxis.setTickLabelPaint方法代碼示例

本文整理匯總了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;
}
 
開發者ID:chrislee35,項目名稱:visualfirewall,代碼行數:32,代碼來源:StatisticsView.java


注:本文中的org.jfree.chart.axis.DateAxis.setTickLabelPaint方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。