美文网首页
Charts优秀图表第三方 swift4

Charts优秀图表第三方 swift4

作者: 慧煎蛋 | 来源:发表于2018-09-18 16:47 被阅读0次

柱状图的x轴文字设置方法变成使用代理

具体github.com/danielgindi/Charts/issues/1496

给出大致代码

Class ChartViewController : UIViewController, IAxisValueFormatter //step1, 遵守代理  {

    var xVals = [String]() // step2, Declare a global variable array for time

    override func viewDidLoad() {

        super.viewDidLoad()

        setupChartStyle() // step 3

    }

    func setupChartStyle() {

        combinedChartView.chartDescription?.text = ""

        combinedChartView.noDataText = "加载中..."

        combinedChartView...

        combinedChartView.xAxis.valueFormatter = self // Important statement, don't forgot this st.

    }

    func setChartData() { // set ChartData DataSource step 4 这一步配置x轴lable, 我没用

        for i in 0..

            xVals.append("Time string formatted") // In this step, you can format time strings.

        }

    }

    // return xVals value func

    stringForValue(_ value: Double, axis: AxisBase?) -> String {//实现代理方法xVals总的数组

        return xVals[Int(value) % xVals.count]

    }// OR

    func stringForValue(_ value: Double, axis: AxisBase?) -> String {

        return xVals[Int(value)]

    }

}

charts使用分组柱状图

stackoverflow.com/questions/35294076/how-to-make-a-grouped-barchart-with-ios-charts/35368184#35368184

相关文章

  • Charts优秀图表第三方 swift4

    柱状图的x轴文字设置方法变成使用代理 具体github.com/danielgindi/Charts/issues...

  • iOS项目中使用Charts的集成步骤

    Charts库是一个优秀的第三方库,用于实现各种图表。GitHub地址 这个库是使用swift实现的,集成到OC项...

  • iOS-Charts看这个就够了

    最近做项目需要画K线图和折线图,引入了第三方的图标库Charts。 Charts 这个图表库基本上能够满足大家对于...

  • 图表库推荐--iOS_charts

    在接触图表开发的过程中,比较了各大图表第三方库,最终敲定认为最厉害的库为iOS_charts:GitHub地址,便...

  • 一些实用的小Demo值得收藏

    ios-charts:一个强大的iOS图表框架 excel表格形式的第三方 https://github.com/...

  • TornadoFX编程指南,第8章,图表

    译自《Charts》 图表 JavaFX提供了一组方便的图表(handy set of charts),可快速显示...

  • 优秀的图表插件

    一、优秀的图表JS插件 1.百度的Echart2.0 ECharts,缩写来自Enterprise Charts,...

  • iOS-Charts看这个就够了

    最近做项目需要画K线图和折线图,引入了第三方的图标库Charts。 这个图表库基本上能够满足大家对于图表绘制的...

  • charts - iOS图表框架

    最近做项目需要画饼状图和折线图,引入了第三方的图标库Charts。这个图表库基本上能够满足大家对于图表绘制的需要,...

  • charts 框架一个坑,手势问题

    iOS开发图表时使用第三方charts 框架遇到的一个坑。由于把图表的view当做一个子view放在一个contr...

网友评论

      本文标题:Charts优秀图表第三方 swift4

      本文链接:https://www.haomeiwen.com/subject/skwpnftx.html