-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
k线图的方向是不是反了 #49
Comments
什么方向反了 |
数据少的时候 数据全部显示在右边了 |
#28 最后面有 |
什么意思啊 我的意思是 你的k线图的数据默认是显示在右边的 当数据少的时候 全部都在右边了 你方便加我qq吗 604416495 我给你截图看看吧 谢谢了 |
找到解决方法了 谢谢了 |
@lipeizjl @tifezh 你好 我也遇到这样的问题了 数据少的时候,k线从右边开始,请求你是怎么解决的呢 |
@xueqiya `修改BaseKChartView中的两个方法:具体内容查看#28
|
已经按照大神的方法解决了,非常感谢🤭
Bertking <[email protected]> 于 2018年12月17日周一 上午11:49写道:
… @xueqiya <https://github.com/xueqiya> 修改BaseKChartView中的两个方法:具体内容查看#28
` /**
* 获取平移的最小值
* @return <https://github.com/return>
*/
private float getMinTranslateX() {
if (!isFullScreen()) {
return getMaxTranslateX();
}
return -mDataLen + mWidth / mScaleX - mPointWidth / 2;
}
/**
* 获取平移的最大值
* @return
*/
private float getMaxTranslateX() {
return mPointWidth / 2;
}`
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#49 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/Aiq31UU0X7Aupm_YVOfHIFZ77mqPxjuFks5u5xRFgaJpZM4X5c45>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
k线图的方向是不是反了
The text was updated successfully, but these errors were encountered: