All Projects → ioneday → Wxchart

ioneday / Wxchart

Licence: mit
微信小程序,图表组件(柱状图、折线图、饼图、雷达图...)。持续更新中...

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Wxchart

Hqchart
HQChart - H5, 微信小程序 沪深/港股/数字货币/期货/美股 K线图(kline),走势图,缩放,拖拽,十字光标,画图工具,截图,筹码图. 分析家语法,通达信语法,(麦语法),第3方数据替换接口
Stars: ✭ 1,126 (+1194.25%)
Mutual labels:  wechat, chart
Wx Charts
微信小程序图表charts组件,Charts for WeChat Mini Program
Stars: ✭ 4,633 (+5225.29%)
Mutual labels:  wechat, chart
Taro Msparis
🌱用 React 编写的基于Taro + Dva构建的适配不同端(微信/百度/支付宝小程序、H5、React-Native 等)的时装衣橱
Stars: ✭ 1,203 (+1282.76%)
Mutual labels:  wechat
Wechat Webapp Douban Movie
微信小程序开发之豆瓣电影
Stars: ✭ 84 (-3.45%)
Mutual labels:  wechat
Wechat Miniprogram Ar 3d
A WeChat MiniProgram 3D that includes a Panorama Viewer and a 3D Viewer using the device orientation control.
Stars: ✭ 80 (-8.05%)
Mutual labels:  wechat
Easy Wechat Script
some simple wechat scripts based on itchat ,which may be useful for your daily life
Stars: ✭ 78 (-10.34%)
Mutual labels:  wechat
Wcdb
WCDB is a cross-platform database framework developed by WeChat.
Stars: ✭ 9,264 (+10548.28%)
Mutual labels:  wechat
Cordova Plugin Wechat
A cordova plugin, a JS version of Wechat SDK
Stars: ✭ 1,198 (+1277.01%)
Mutual labels:  wechat
Machinery Industry Press
本项目预计分享数千册电子书,98%以上为机械工业出版社原版电子书,其余为其它出版社出版的一些经典外文读物的原版译本电子书,每本书都配有当当网一键搜索,可查看书价格和简介。目前共计更新2542册图书
Stars: ✭ 85 (-2.3%)
Mutual labels:  wechat
Ember C3
📈 Ember addon library for C3, a D3-based reusable chart library.
Stars: ✭ 81 (-6.9%)
Mutual labels:  chart
Wechat
API, command and message handling for WeChat in Rails
Stars: ✭ 1,251 (+1337.93%)
Mutual labels:  wechat
Bitcoin Scraper
💲 bitcoin chart history scraper
Stars: ✭ 80 (-8.05%)
Mutual labels:  chart
Wechat
Deprecated 微信公众平台企业号 SDK
Stars: ✭ 78 (-10.34%)
Mutual labels:  wechat
Night
Weekly Go Online Meetup via Bilibili|Go 夜读|通过 bilibili 在线直播的方式分享 Go 相关的技术话题,每天大家在微信/telegram/Slack 上及时沟通交流编程技术话题。
Stars: ✭ 10,058 (+11460.92%)
Mutual labels:  wechat
Mina Webpack
🍱 Mina single-file-component meets Webpack
Stars: ✭ 77 (-11.49%)
Mutual labels:  wechat
Smartchart
智能折线图、柱状图,支持水平垂直滚动拉伸,自适应屏幕(解决与scrollview滑动冲突),x轴y轴自定义刻度以及标题,双向滚动列表;增加一周天气折线图以及24小时天气预报
Stars: ✭ 85 (-2.3%)
Mutual labels:  chart
Ac D3
Javascript Library for building Audiovisual Charts in D3
Stars: ✭ 76 (-12.64%)
Mutual labels:  chart
Flutter Wechat
🔥A flutter app which clones wechat,it's based on flutter and dart, it's on the road! 这是一个仿照微信样式基于flutter实现的app,还在继续完善中,使用到了flutter中大多数的组件,适合以此项目进行flutter学习。 https://dzou.top
Stars: ✭ 80 (-8.05%)
Mutual labels:  wechat
Qq Wechat Emotion Parser
QQ、微信表情符号解析:字符串到图片URL
Stars: ✭ 82 (-5.75%)
Mutual labels:  wechat
Anti Recall
Android 免root 防撤回神器 !
Stars: ✭ 1,274 (+1364.37%)
Mutual labels:  wechat

wxchart

微信小程序,图表组件(柱状图、折线图、饼图、雷达图...)。持续更新中...

barchartlinechartlinechartlinechart

Useage

wxml:

//自适应屏幕宽度
<canvas style="width:{{chartWidth}}px;height:{{chartHeight}}px;"/>

js:

var chart = require("../../utils/chart.js");

chart.draw(this, 'canvasId', {
  hideYaxis: false,
  color: ['#394655', '#74DAE5', '#ED7672', '#F3AA59', '#FEE746'],
  title: {
    text: "2017城市人均收入(万)",
    color: "#333333",
    size: 16
  },
  xAxis: {
    color: "#666A73",
    size: 10,
    data: ['北京', '上海', '杭州', '深圳', '广州', '成都', '南京', '西安']
  },
  series: [
    {
          name: "第一季度",
          category: "bar", //切换柱状图或折线图
          data: [37, 63, 60, 78, 92, 63, 57, 48]
        },
        {
          name: "第二季度",
          category: "line",
          data: [20, 35, 38, 59, 48, 27, 43, 35]
        },
        {
          name: ['北京', '上海', '杭州', '深圳', '广州', '成都'],
          category: "pie",//饼图不能与以上类型(bar、line)同时绘制
          data: [40, 38, 39, 28, 27, 33]
        }
  ]
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].