com.github.mikephil.charting.components.YAxis.setXOffset()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(105)

本文整理了Java中com.github.mikephil.charting.components.YAxis.setXOffset()方法的一些代码示例,展示了YAxis.setXOffset()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YAxis.setXOffset()方法的具体详情如下:
包路径:com.github.mikephil.charting.components.YAxis
类名称:YAxis
方法名:setXOffset

YAxis.setXOffset介绍

暂无

代码示例

代码示例来源:origin: thuryn/your-local-weather

yLeft.setTextSize(textSize);
yLeft.setXOffset(15);
if (yAxisValues != null) {
  yLeft.setLabelCount(yAxisValues, true);
  yRight.setTextSize(textSize);
yRight.setXOffset(15);
if (yAxisValues != null) {
  yRight.setLabelCount(yAxisValues, true);

代码示例来源:origin: qqq3/good-weather

yLeft.enableGridDashedLine(5f, 10f, 0f);
yLeft.setGridColor(Color.parseColor("#333333"));
yLeft.setXOffset(15);
yLeft.setValueFormatter(mYAxisFormatter);

代码示例来源:origin: qqq3/good-weather

yLeft.enableGridDashedLine(5f, 10f, 0f);
yLeft.setGridColor(Color.parseColor("#333333"));
yLeft.setXOffset(15);
yLeft.setValueFormatter(mYAxisFormatter);

代码示例来源:origin: qqq3/good-weather

yLeft.enableGridDashedLine(5f, 10f, 0f);
yLeft.setGridColor(Color.parseColor("#333333"));
yLeft.setXOffset(15);
yLeft.setValueFormatter(mYAxisFormatter);

代码示例来源:origin: thuryn/your-local-weather

yLeft.setTextColor(PreferenceUtil.getTextColor(this));
yLeft.setGridColor(PreferenceUtil.getGraphGridColor(this));
yLeft.setXOffset(15);
yLeft.setValueFormatter(rainSnowYAxisValueFormatter);

代码示例来源:origin: qqq3/good-weather

yLeft.enableGridDashedLine(5f, 10f, 0f);
yLeft.setGridColor(Color.parseColor("#333333"));
yLeft.setXOffset(15);
yLeft.setValueFormatter(mYAxisFormatter);

代码示例来源:origin: thuryn/your-local-weather

yLeft.setTextColor(PreferenceUtil.getTextColor(this));
yLeft.setGridColor(PreferenceUtil.getGraphGridColor(this));
yLeft.setXOffset(15);
yLeft.setValueFormatter(rainSnowYAxisValueFormatter);

代码示例来源:origin: thuryn/your-local-weather

yLeft.setTextColor(PreferenceUtil.getTextColor(this));
yLeft.setGridColor(PreferenceUtil.getGraphGridColor(this));
yLeft.setXOffset(15);
yLeft.setValueFormatter(rainSnowYAxisValueFormatter);

代码示例来源:origin: thuryn/your-local-weather

yLeft.setTextColor(PreferenceUtil.getTextColor(this));
yLeft.setGridColor(PreferenceUtil.getGraphGridColor(this));
yLeft.setXOffset(15);
yLeft.setValueFormatter(rainSnowYAxisValueFormatter);

代码示例来源:origin: thuryn/your-local-weather

yLeft.setTextColor(PreferenceUtil.getTextColor(this));
yLeft.setGridColor(PreferenceUtil.getGraphGridColor(this));
yLeft.setXOffset(15);
yLeft.setValueFormatter(new YAxisValueFormatter(locale, 2, AppPreference.getWindUnit(this)));
yLeft.setZeroLineWidth(10f);

代码示例来源:origin: thuryn/your-local-weather

yLeft.setTextColor(PreferenceUtil.getTextColor(this));
yLeft.setGridColor(PreferenceUtil.getGraphGridColor(this));
yLeft.setXOffset(15);
yLeft.setValueFormatter(new YAxisValueFormatter(locale, 2, TemperatureUtil.getTemperatureUnit(this)));

代码示例来源:origin: thuryn/your-local-weather

yLeft.setTextColor(PreferenceUtil.getTextColor(this));
yLeft.setGridColor(PreferenceUtil.getGraphGridColor(this));
yLeft.setXOffset(15);
yLeft.setValueFormatter(new YAxisValueFormatter(locale, 2, AppPreference.getPressureUnit(this)));

相关文章

YAxis类方法