- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在轴的末端放置一个箭头,但我不知道如何在 MPAndroidCharts 库中实现这一点。最后应该是这样的。
我目前的风格:
val xAxis = chart.xAxis
xAxis.setDrawLabels(false)
xAxis.setDrawAxisLine(true)
xAxis.setDrawGridLines(false)
xAxis.position = XAxis.XAxisPosition.BOTTOM
xAxis.axisLineWidth = 1.5f
val axisLeft = chart.axisLeft
axisLeft.setDrawGridLines(false)
axisLeft.setDrawZeroLine(false)
axisLeft.setDrawLabels(false)
axisLeft.axisLineWidth = 1.5f
axisLeft.setDrawTopYLabelEntry(true)
val axisRight = chart.axisRight
axisRight.setDrawGridLines(false)
axisRight.setDrawLabels(false)
axisRight.setDrawZeroLine(false)
axisRight.setDrawAxisLine(false)
最佳答案
要在 X 轴和 Y 轴的末端添加箭头,您必须制作自定义 XAxisRenderer
和 YAxisRenderer
。您所要做的就是为每个渲染器创建一个子类并覆盖公共(public)方法 renderAxisLine(c: Canvas)
,该方法负责绘制轴线并通过添加修改基类的代码每条轴线末端的箭头图标。一个例子如下:
对于 ArrowXAxisRenderer:
class ArrowXAxisRenderer(context: Context, viewPortHandler: ViewPortHandler?, xAxis: XAxis?, trans: Transformer?)
: XAxisRenderer(viewPortHandler, xAxis, trans) {
private val arrowRightIcon: Drawable?
private val arrowWidth: Int
private val arrowHeight: Int
init {
arrowRightIcon = ContextCompat.getDrawable(context, R.drawable.ic_arrow_right)
arrowWidth = arrowRightIcon!!.intrinsicWidth
arrowHeight = arrowRightIcon.intrinsicHeight
}
override fun renderAxisLine(c: Canvas) {
if (!mXAxis.isDrawAxisLineEnabled || !mXAxis.isEnabled) return
mAxisLinePaint.color = mXAxis.axisLineColor
mAxisLinePaint.strokeWidth = mXAxis.axisLineWidth
mAxisLinePaint.pathEffect = mXAxis.axisLineDashPathEffect
if (mXAxis.position == XAxis.XAxisPosition.TOP ||
mXAxis.position == XAxis.XAxisPosition.TOP_INSIDE ||
mXAxis.position == XAxis.XAxisPosition.BOTH_SIDED) {
//draw the top X axis line
c.drawLine(
mViewPortHandler.contentLeft(),
mViewPortHandler.contentTop(),
mViewPortHandler.contentRight(),
mViewPortHandler.contentTop(),
mAxisLinePaint
)
//draw the arrowRightIcon on the right side of top X axis
arrowRightIcon!!.bounds =
Rect(
mViewPortHandler.contentRight().toInt() - arrowWidth / 2,
mViewPortHandler.contentTop().toInt() - arrowHeight / 2,
mViewPortHandler.contentRight().toInt() + arrowWidth / 2,
mViewPortHandler.contentTop().toInt() + arrowHeight / 2
)
arrowRightIcon.draw(c)
}
if (mXAxis.position == XAxis.XAxisPosition.BOTTOM ||
mXAxis.position == XAxis.XAxisPosition.BOTTOM_INSIDE ||
mXAxis.position == XAxis.XAxisPosition.BOTH_SIDED) {
//draw the bottom X axis line
c.drawLine(
mViewPortHandler.contentLeft(),
mViewPortHandler.contentBottom(),
mViewPortHandler.contentRight(),
mViewPortHandler.contentBottom(),
mAxisLinePaint
)
//draw the arrowRightIcon on the right side of bottom X axis
arrowRightIcon!!.bounds =
Rect(
mViewPortHandler.contentRight().toInt() - arrowWidth / 2,
mViewPortHandler.contentBottom().toInt() - arrowHeight / 2,
mViewPortHandler.contentRight().toInt() + arrowWidth / 2,
mViewPortHandler.contentBottom().toInt() + arrowHeight / 2
)
arrowRightIcon.draw(c)
}
}
}
对于 ArrowYAxisRenderer:
class ArrowYAxisRenderer(context: Context, viewPortHandler: ViewPortHandler?, yAxis: YAxis?, trans: Transformer?)
: YAxisRenderer(viewPortHandler, yAxis, trans) {
private val arrowUpIcon: Drawable?
private val arrowWidth: Int
private val arrowHeight: Int
init {
arrowUpIcon = ContextCompat.getDrawable(context, R.drawable.ic_arrow_up)
arrowWidth = arrowUpIcon!!.intrinsicWidth
arrowHeight = arrowUpIcon.intrinsicHeight
}
override fun renderAxisLine(c: Canvas) {
if (!mYAxis.isEnabled || !mYAxis.isDrawAxisLineEnabled) return
mAxisLinePaint.color = mYAxis.axisLineColor
mAxisLinePaint.strokeWidth = mYAxis.axisLineWidth
if (mYAxis.axisDependency == YAxis.AxisDependency.LEFT) {
//draw the left Y line axis
c.drawLine(
mViewPortHandler.contentLeft(),
mViewPortHandler.contentTop(),
mViewPortHandler.contentLeft(),
mViewPortHandler.contentBottom(),
mAxisLinePaint
)
//draw the arrowUp on top of the left Y axis
arrowUpIcon!!.bounds =
Rect(mViewPortHandler.contentLeft().toInt() - arrowWidth / 2,
mViewPortHandler.contentTop().toInt() - arrowHeight / 2,
mViewPortHandler.contentLeft().toInt() + arrowWidth / 2,
mViewPortHandler.contentTop().toInt() + arrowHeight / 2
)
arrowUpIcon.draw(c)
}
else {
//draw the right Y line axis
c.drawLine(
mViewPortHandler.contentRight(),
mViewPortHandler.contentTop(),
mViewPortHandler.contentRight(),
mViewPortHandler.contentBottom(),
mAxisLinePaint
)
//draw the arrowUp on top of the right Y axis
arrowUpIcon!!.bounds =
Rect(
mViewPortHandler.contentRight().toInt() - arrowWidth / 2,
mViewPortHandler.contentTop().toInt() - arrowHeight / 2,
mViewPortHandler.contentRight().toInt() + arrowWidth / 2,
mViewPortHandler.contentTop().toInt() + arrowHeight / 2
)
arrowUpIcon.draw(c)
}
}
}
在上面的示例中,我使用了下面的矢量绘图,您可以根据自己的需要进行更改:
R.drawable.ic_arrow_right:
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="@android:color/darker_gray">
<path
android:fillColor="@android:color/darker_gray"
android:pathData="M8.59,16.59L13.17,12 8.59,7.41 10,6l6,6 -6,6 -1.41,-1.41z"/>
</vector>
R.drawable.ic_arrow_up:
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="@android:color/darker_gray">
<path
android:fillColor="@android:color/darker_gray"
android:pathData="M7.41,15.41L12,10.83l4.59,4.58L18,14l-6,-6 -6,6z"/>
</vector>
X 轴的用法:
chart.setXAxisRenderer(ArrowXAxisRenderer(this, chart.getViewPortHandler(), chart.getXAxis(), chart.getTransformer(YAxis.AxisDependency.LEFT)))
Y(左或右)轴的用法:
chart.setRendererLeftYAxis(ArrowYAxisRenderer(this, chart.getViewPortHandler(), chart.getAxisLeft(), chart.getTransformer(YAxis.AxisDependency.LEFT)))
chart.setRendererRightYAxis(ArrowYAxisRenderer(this, chart.getViewPortHandler(), chart.getAxisRight(), chart.getTransformer(YAxis.AxisDependency.RIGHT)))
结果:
注意:这是使用“com.github.PhilJay:MPAndroidChart:v3.1.0”测试的
关于android - MpAndroidChart:将箭头添加到轴的末端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71647308/
我正在做一个项目,最近开始使用 MPAndroidChart。 我让 MPAndroidChart 正常工作并正确填充图表数据,但我想要一种能够拖动和选择图表区域的方法。选择完成后,它需要返回所选点的
我知道删除x值的方法,但是我如何删除y值。我基本上不希望饼图上有任何文本。 该图显示了饼图顶部带有80.0和20.0标签的当前状态。 最佳答案 删除Y值 使用dataset.setDrawValues
在我的应用程序中,我使用 ios-charts 库(MPAndroidChart 的快速替代品)。我需要的只是显示带有日期和值的折线图。 现在我使用这个函数来显示图表 func setChart(da
我正在使用这个很棒的绘图仪框架 ios-charts。 Android 版本的文档指出,可以使用“setTouchEnabled(false)”禁用图表上的触摸事件。但是我在 iOS 版本中找不到此功
我正在使用 MPAndroidChart (v3.0.2) 在我的 Android 应用程序中实时绘制我的数据。我需要平滑图表的线条(来自传感器的噪音)。我了解我需要使用以下任何一种方法: lineD
我正在尝试使用 MpAndroidChart 库绘制圆角饼图。 预期输出与此类似。 两端都需要外圆。有一个方法 pieChart.setDrawRoundedSlices(true),但问题是饼图的起
那么如何只渲染 x 轴而不渲染其上的网格线。从附图中可以看出,我将轴线的宽度设置为 4 ,将网格线的宽度设置为 2 。所以黑线出现在白轴线上。我只想显示轴线。我该怎么做。 最佳答案 正如 docs 中
我想在轴的末端放置一个箭头,但我不知道如何在 MPAndroidCharts 库中实现这一点。最后应该是这样的。 我目前的风格: val xAxis = chart.xAxis xAxis.s
在 CombinedChart 中添加 chart.setFitBars(true) 将使第一个和最后一个条可见。 我需要做同样的事情来组合折线图和条形图。 现在,第一个和最后一个条不完全可见。 我试
我想点击显示,三个tooltips/markers , 只有一个 dataset . 如下图所示: 我该怎么做? 最佳答案 我创建了一个 LineChart并给它数据。 对于多个标记,我创建了一个实现
有没有办法让 MarkerView 固定位置?我需要在 修复它左上或 右上角角落。 最佳答案 这是将标记固定在左上角或右上角的一种方法 创建自定义 MarkerView 后,您可以执行以下操作。 1)
我使用 MPAndroidChart 制作了 LineChart 并将 x 轴文本大小设置为 15。不幸的是,由于文本大小较大,x 轴标签在顶部被截断: 我怎么解决这个问题? 最佳答案 chart.e
我在Android Studio中将Kotlin与MPAndroidChart结合使用。我设法从示例中构建标准图表,但是我需要一些不同的东西。 是否可以在条形图包含间隙的地方构建水平条形图? 类似于以
我想更改限制线顶部图表的颜色。我们现在已经实现了更改跨越限制线的图表条的颜色。但我想做的是改变图表跨越限制线的颜色。 最佳答案 我假设您在此处使用BarChart 事实证明this response正
我读过各种教程,但大多数都展示了相同的示例。图例数组放入以下构造函数中: new PieData(legendValues, IPieDataSet dataSet) 但是 PieData 没有这个构
这是我的饼图,我想将这些数据移动到我想要的位置,那么我该怎么做呢? protected void onCreate(Bundle savedInstanceState) { super.onC
example 我已经尝试过了。请帮助我..我真的不知道。我认为这与 Canvas 类有关。 自定义线图渲染器 我觉得颜色不是根据x值填充的,而是一次性填充的。 这很难,因为我不习惯 Canvas 。
我正在使用“implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'”这个库来创建饼图,并且我手动输入的饼图条目值显示不正确。我按照教程进行操
在MpAndroidChart中使用饼图时,成功绘制了饼图。当尝试向图表图例添加自定义标签和颜色时。标签正在更新,但所有图例的图例颜色均为蓝色。 ArrayList PieEntryLabels
这是条形图的图片。正如您所看到的,存在对齐问题,条形图未与标签对齐,特别是在中间部分。另外,我希望底部轴显示 10 的条形,而不是 1.2、1.4、1.6 等,因为永远不会有任何小数,所以它没有用。我
我是一名优秀的程序员,十分优秀!