当前位置: 首页 > 科技观察

watchOS绘制自定义图表

时间:2023-03-21 19:02:59 科技观察

源码介绍:watchOS没有UIView类,所以使用YOChartImageKit为自定义值的图表绘制UIImage。可绘制折线图、柱状图、环形图等,并可分别调整显示选项。源码效果:源码片段:letimage=YOLineChartImage()image.strokeWidth=4.0//widthoflineimage.strokeColor=randomColor()//coloroflineimage.values=[0.0,1.0,2.0]//chartvaluesimage.smooth=false//disablesmoothlineimage.drawImage(frame,scale:scale)//drawaimage下载地址:http://down.51cto.com/data/2070668