美文网首页
绘制折线

绘制折线

作者: 陈世美_ | 来源:发表于2015-05-29 15:03 被阅读30次

CGContextRef context = UIGraphicsGetCurrentContext();

CGContextSetLineCap(context, kCGLineCapSquare);

CGContextSetLineWidth(context, rect.size.height * 0.05);

CGContextSetStrokeColorWithColor(context, [UIColor whiteColor].CGColor);

CGContextBeginPath(context);

CGContextMoveToPoint(context, rect.size.width - 0.7 * rect.size.height - 1, 0.2 * rect.size.height);

CGContextAddLineToPoint(context, rect.size.width - 0.35 * rect.size.height - 1, 0.6 * rect.size.height);

CGContextAddLineToPoint(context, rect.size.width - 1, 0.2 * rect.size.height);

CGContextStrokePath(context);

相关文章

  • SVG 绘制曲折线

    本节我们来学习如何在 SVG 中绘制曲折线,绘制曲折线可以使用 元素来实现。 如何绘制曲折线 曲折线就是通过一...

  • matplotlib快速入门

    1. 折线图 1.1 绘制一条折线 图形如下: 1.2绘制两条折线的方法: 图形: 1.3 绘制多条曲线 1.4 ...

  • 2018-10-15

    绘制折线图,折线叠加图,柱状叠加图。

  • charts 写柱状图和折线图

    绘制柱状图 绘制折线图

  • R语言可视化(二):折线图绘制

    02.折线图绘制 清除当前环境中的变量 设置工作目录 base plot函数绘制普通折线图 ggplot2包绘制带...

  • SVG

    SVG 绘制长方形绘制圆形绘制椭圆 绘制直线 绘制折线 绘制多边形 ...

  • 数据处理pandas,matplot简单用法

    pandas导入文件 matplot基础 折线图散点图使用plot模块来作图 绘制折线图 绘制散点图 样式 点的颜...

  • 绘制折线

    CGContextRef context = UIGraphicsGetCurrentContext(); CGC...

  • matplotlib绘制基本图形

    折线图 图形展示折线图说明plt.plot()可以直接绘制折线,其中marker是折线上的标记,linewidth...

  • 2018-04-24

    matplotlib绘图 通常我们可以绘制折线图、饼状图、柱状图,用matplotlib绘制折线图、柱状图情况较多...

网友评论

      本文标题:绘制折线

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