本文整理匯總了Java中com.github.mikephil.charting.components.XAxis.setGridColor方法的典型用法代碼示例。如果您正苦於以下問題:Java XAxis.setGridColor方法的具體用法?Java XAxis.setGridColor怎麽用?Java XAxis.setGridColor使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.github.mikephil.charting.components.XAxis
的用法示例。
在下文中一共展示了XAxis.setGridColor方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: initChart
import com.github.mikephil.charting.components.XAxis; //導入方法依賴的package包/類
/**
* 初始化圖表
*
* @param chart 原始圖表
* @return 初始化後的圖表
*/
public static LineChart initChart(LineChart chart) {
// 不顯示數據描述
chart.getDescription().setEnabled(false);
// 沒有數據的時候,顯示“暫無數據”
chart.setNoDataText("暫無數據");
// 不顯示表格顏色
chart.setDrawGridBackground(false);
// 不可以縮放
chart.setScaleEnabled(false);
// 不顯示y軸右邊的值
chart.getAxisRight().setEnabled(false);
// 不顯示圖例
Legend legend = chart.getLegend();
legend.setEnabled(false);
// 向左偏移15dp,抵消y軸向右偏移的30dp
chart.setExtraLeftOffset(-15);
XAxis xAxis = chart.getXAxis();
// 不顯示x軸
xAxis.setDrawAxisLine(false);
// 設置x軸數據的位置
xAxis.setPosition(XAxis.XAxisPosition.BOTTOM);
xAxis.setTextColor(Color.WHITE);
xAxis.setTextSize(12);
xAxis.setGridColor(Color.parseColor("#30FFFFFF"));
// 設置x軸數據偏移量
xAxis.setYOffset(-12);
YAxis yAxis = chart.getAxisLeft();
// 不顯示y軸
yAxis.setDrawAxisLine(false);
// 設置y軸數據的位置
yAxis.setPosition(YAxis.YAxisLabelPosition.OUTSIDE_CHART);
// 不從y軸發出橫向直線
yAxis.setDrawGridLines(false);
yAxis.setTextColor(Color.WHITE);
yAxis.setTextSize(12);
// 設置y軸數據偏移量
yAxis.setXOffset(30);
yAxis.setYOffset(-3);
yAxis.setAxisMinimum(0);
//Matrix matrix = new Matrix();
// x軸縮放1.5倍
//matrix.postScale(1.5f, 1f);
// 在圖表動畫顯示之前進行縮放
//chart.getViewPortHandler().refresh(matrix, chart, false);
// x軸執行動畫
//chart.animateX(2000);
chart.invalidate();
return chart;
}