首页 > 解决方案 > 在 WatchOs 中添加图表

问题描述

我正在开发 POC 以在 Apple Watch 中实现图表(商业/企业数据分析)。

例如 :

使用图表观看 OS 应用程序

我怎样才能做到这一点 ?

标签: ioswatchkitapple-watch

解决方案


我发现了YOChartImageKit。使用这个库,您可以在 watch os 中创建图表。

安装

可可豆荚

use_frameworks!

pod 'YOChartImageKit', '~> 1.1'

迦太基

github "yasuoza/YOChartImageKit" ~> 1.1

可可种子

# For both iOS and watchOS framework
target 'YOChartImageKit' do
   github 'yasuoza/YOChartImageKit', '1.1.0', files: 'Source/YOChartImageKit/*.{h,m}'
end

配置

折线图实心

折线图实心

let image = YOLineChartImage()
image.strokeWidth = 4.0              // width of line
image.strokeColor = randomColor()    // color of line
image.values = [0.0, 1.0, 2.0]       // chart values
image.smooth = false                 // disable smooth line
image.drawImage(frame, scale: scale) // draw an image

折线图平滑

折线图平滑

let image = YOLineChartImage()
image.strokeWidth = 4.0              // width of line
image.fillColor = randomColor()      // color of area
image.values = [0.0, 1.0, 2.0]       // chart values
// image.smooth = true               // [default] draws a smooth line
image.drawImage(frame, scale: scale) // draw an image

条形图垂直

条形图垂直

let image = YOBarChartImage()
image.values = [0.0, 1.0, 2.0]       // chart values
image.fillColor = randomColor()      // color of bars
// image.barPadding = 2.0            // [optional] padding of bars
// image.barStyle = .Vertical        // [default] draws a vertical bars
image.drawImage(frame, scale: scale) // draw an image

条形图水平

条形图水平

let image = YOBarChartImage()
image.values = [0.0, 1.0, 2.0]       // chart values
image.fillColor = randomColor()      // color of bars
// image.barPadding = 2.0            // [optional] padding of bars
image.barStyle = .Horizontal         // draws a horizontal bars
image.drawImage(frame, scale: scale) // draw an image

甜甜圈图

甜甜圈图

let image = YODonutChartImage()
image.donutWidth = 16.0                           // width of donut
// image.labelText = "LABEL"                      // [optional] center label text
// image.labelColor = UIColor.whiteColor()        // [optional] center label color
image.values = [10.0, 20.0, 70.0]                 // chart values
image.colors = (0..<3).map { _ in randomColor() } // colors of pieces
image.drawImage(frame, scale: scale)              // draw an image

框架要求

watchOS ~> 2.0

构建要求

Xcode >= 7.1

示例应用程序

示例应用程序适用于 iOS 和 watchOS。你可以在这里找到所有文件

pod try YOChartImageKit

YOChartImageKit.xcodeproj使用 Xcode 打开并构建演示应用程序。


您可以在GitHub 自述文件中找到所有文档。

来源


推荐阅读