MPAndroidChart标记在右侧或左侧屏幕中被剪切

时间:2017-10-26 04:15:57

标签: android marker mpandroidchart

如何设置边距或识别是否在右侧或左侧屏幕上显示标记,导致我的标记在屏幕的右侧或左侧显示时被切断。
linechart
我希望下面的图像如果我点击左侧或右侧的值不像上面的图像那样切断了enter image description here

1 个答案:

答案 0 :(得分:0)

尝试为图表类设置保证金

使用

 RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
        layoutParams.setMargins(left,top,right,bottom);
        charId.setLayoutParams(layoutParams);


   android:layout_marginStart="20dp"
   android:layout_marginEnd="20dp"