All Projects → shzlw → Zeu

shzlw / Zeu

Licence: mit
A JavaScript library for real-time visualization

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Zeu

Clchart
A fast, simple and cross-platform(html5 react-native weex wechat-applet) stock chart library created using canvas.
Stars: ✭ 250 (-85.93%)
Mutual labels:  chart, canvas
jqCandlestick
jQuery plugin for creating line, bar and candlestick charts.
Stars: ✭ 13 (-99.27%)
Mutual labels:  chart, canvas
Chart.js
Simple HTML5 Charts using the <canvas> tag
Stars: ✭ 55,646 (+3031.46%)
Mutual labels:  chart, canvas
Wechart
Create all the [ch]arts by cax or three.js - Cax 和 three.js 创造一切图[表]
Stars: ✭ 152 (-91.45%)
Mutual labels:  chart, canvas
Luckysheet
Luckysheet is an online spreadsheet like excel that is powerful, simple to configure, and completely open source.
Stars: ✭ 9,772 (+449.92%)
Mutual labels:  chart, canvas
Picasso.js
A charting library streamlined for building interactive visualizations for the Qlik product suites.
Stars: ✭ 175 (-90.15%)
Mutual labels:  chart, canvas
awesome-canvas
Canvas资源库大全中文版。An awesome Canvas packages and resources.
Stars: ✭ 288 (-83.79%)
Mutual labels:  chart, canvas
Stock Chart
基于 canvas 的沪深两市股票分时 K 线图
Stars: ✭ 170 (-90.43%)
Mutual labels:  chart, canvas
Tui.chart
🍞📊 Beautiful chart for data visualization.
Stars: ✭ 5,041 (+183.68%)
Mutual labels:  chart, canvas
Wx Charts
微信小程序图表charts组件,Charts for WeChat Mini Program
Stars: ✭ 4,633 (+160.72%)
Mutual labels:  chart, canvas
okeevis-render
a fast lightweight 2d graphic library
Stars: ✭ 22 (-98.76%)
Mutual labels:  chart, canvas
Dazv
canvas 可视化图表
Stars: ✭ 70 (-96.06%)
Mutual labels:  chart, canvas
Klinechart
📈Lightweight k-line chart that can be highly customized. Zero dependencies. Support mobile.(可高度自定义的轻量级k线图,无第三方依赖,支持移动端)
Stars: ✭ 303 (-82.95%)
Mutual labels:  chart, canvas
Hqchart
HQChart - H5, 微信小程序 沪深/港股/数字货币/期货/美股 K线图(kline),走势图,缩放,拖拽,十字光标,画图工具,截图,筹码图. 分析家语法,通达信语法,(麦语法),第3方数据替换接口
Stars: ✭ 1,126 (-36.63%)
Mutual labels:  chart, canvas
Chart.qml
Chart.qml like Chart.js
Stars: ✭ 100 (-94.37%)
Mutual labels:  chart, canvas
Vue Canvas Nest
💫 A Vue.js background component for canvas-nest.
Stars: ✭ 136 (-92.35%)
Mutual labels:  canvas
Wordcloud2.js
Tag cloud/Wordle presentation on 2D canvas or HTML
Stars: ✭ 1,905 (+7.2%)
Mutual labels:  canvas
X Spreadsheet
A web-based JavaScript(canvas) spreadsheet
Stars: ✭ 12,046 (+577.88%)
Mutual labels:  canvas
Webpack Bundle Analyzer
Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap
Stars: ✭ 11,472 (+545.58%)
Mutual labels:  chart
Croquis.js
HTML5 drawing tool library
Stars: ✭ 142 (-92.01%)
Mutual labels:  canvas

Zeu.js

Build Status license: MIT npm version

Zeu.js is JavaScript library featuring a collection of prebuilt visualization components for building real-time TV dashboard, monitoring UI and IoT web interface.

What's New (v1.3.1)

System 002

system-002

Installation

From dist

<script src="zeu.min.js"></script>

NPM

npm i zeu

CDN

<script src="https://cdn.jsdelivr.net/npm/zeu"></script>

Quick Start

Let's build our first Zeu component!

<!-- Include zeu.js. -->
<script src="zeu.min.js"></script>
<!-- Create a canvas. -->
<canvas id="text-meter" width="200" height="100"></canvas>
<script>
  // Create a Zeu TextMeter.
  var textMeter = new zeu.TextMeter('text-meter');
  // Update display and percentage value.
  textMeter.displayValue = 'ZEU';
  textMeter.value = 50;
</script>

text-meter

Done! Explore the Introduction page to get started.

v1.0.0

Components

My Command Center

Documentation

Build

From source

npm run build

License

MIT

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].