美文网首页
股票行情分时图绘制,flutter折线图

股票行情分时图绘制,flutter折线图

作者: swluan | 来源:发表于2019-07-12 11:12 被阅读0次

调用方法:

Container(
              height: 200,
              width: MediaQuery
                  .of(context)
                  .size
                  .width * 0.9 * (8 / 12),

              child: new Sparkline(
                data: lineValuesList,
                allLength: lineCount,
                fillMode: FillMode.below,
                fillColor: Colors.grey,
                lineColor: Colors.deepOrangeAccent,
                lineWidth: 1.0,
                yMax: yMax,
                yMin: yMin,
              )
          )

代码地址https://github.com/sky1990/flutter_sparkline

相关文章

网友评论

      本文标题:股票行情分时图绘制,flutter折线图

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