删除MPAndroidChart

时间:2015-09-29 05:43:08

标签: android mpandroidchart

我想删除图表的黑色边框 我正在研究它2天,但仍然无法摆脱它 enter image description here

2 个答案:

答案 0 :(得分:1)

这在相关的github上有解释:) 以下语句允许您隐藏图表的某些部分,包括您正在谈论的部分。

<key>NSAppTransportSecurity</key>
<dict>
  <key>NSExceptionDomains</key>
  <dict>
    <key>test.testdomain.com</key>
    <dict>
      <key>NSIncludesSubdomains</key>
      <true/>
      <key>NSExceptionAllowsInsecureHTTPLoads</key>
      <true/>
    </dict>
  </dict>
</dict>

答案 1 :(得分:0)

在科特林

 chart.axisRight.apply {
        setDrawGridLines(false)
        setDrawLabels(false)
        setDrawAxisLine(false)
    }
    chart.axisLeft.apply {
        setDrawGridLines(false)
        setDrawLabels(false)
        setDrawAxisLine(false)
    }
    chart.xAxis.apply {
        setDrawGridLines(false)
        setDrawLabels(false)
        setDrawAxisLine(false)
    }
    chart.setDrawGridBackground(false)
    chart.setDrawBorders(false)