本文整理匯總了Java中com.github.mikephil.charting.components.YAxis.setXOffset方法的典型用法代碼示例。如果您正苦於以下問題:Java YAxis.setXOffset方法的具體用法?Java YAxis.setXOffset怎麽用?Java YAxis.setXOffset使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.github.mikephil.charting.components.YAxis
的用法示例。
在下文中一共展示了YAxis.setXOffset方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: initChart
import com.github.mikephil.charting.components.YAxis; //導入方法依賴的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;
}
示例2: initChart
import com.github.mikephil.charting.components.YAxis; //導入方法依賴的package包/類
private void initChart() {
// init chart
mChart.getDescription().setEnabled(false);
mChart.setTouchEnabled(true);
mChart.setDragDecelerationFrictionCoef(0.9f);
mChart.setDragEnabled(true);
mChart.setScaleEnabled(true);
mChart.setDrawGridBackground(false);
mChart.setHighlightPerDragEnabled(true);
mChart.setBackground(getActivity().getDrawable(R.drawable.bg_chart));
mChart.setViewPortOffsets(80f, 0f, 80f, 0f);
setData();
mChart.invalidate();
mChart.getLegend().setEnabled(false);
// init xAxis
XAxis xAxis = mChart.getXAxis();
xAxis.setPosition(XAxis.XAxisPosition.BOTTOM_INSIDE);
xAxis.setDrawAxisLine(false);
xAxis.setTextSize(10f);
xAxis.setTextColor(Color.rgb(255, 192, 56));
xAxis.setDrawGridLines(true);
xAxis.setCenterAxisLabels(false);
xAxis.setDrawGridLines(false);
xAxis.setEnabled(false);
xAxis.setGranularityEnabled(true);
YAxis yAxis = mChart.getAxisLeft();
yAxis.setPosition(YAxis.YAxisLabelPosition.INSIDE_CHART);
yAxis.setTextColor(ColorTemplate.getHoloBlue());
yAxis.setDrawGridLines(true);
yAxis.setGranularityEnabled(true);
yAxis.setAxisMinimum(50f);
yAxis.setAxisMaximum(130f);
yAxis.setYOffset(-9f);
yAxis.setXOffset(-20f);
yAxis.setTextColor(Color.rgb(255, 192, 56));
yAxis.setDrawAxisLine(false);
yAxis.setDrawGridLines(false);
mChart.getAxisRight().setEnabled(false);
}