All Projects → kis → Chartify

kis / Chartify

Licence: mit
📊 📈 📉 React.js plugin for building charts using CSS

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Chartify

Fl chart
A powerful Flutter chart library, currently supporting Line Chart, Bar Chart, Pie Chart, Scatter Chart and Radar Chart.
Stars: ✭ 3,882 (+478.54%)
Mutual labels:  chart, charts
Reports kit
Beautiful, interactive charts and tables for Ruby on Rails
Stars: ✭ 349 (-47.99%)
Mutual labels:  chart, charts
Anychart
AnyChart is a lightweight and robust JavaScript charting solution with great API and documentation. The chart types and unique features are numerous, the library works easily with any development stack.
Stars: ✭ 288 (-57.08%)
Mutual labels:  chart, charts
Jhchart
Stars: ✭ 593 (-11.62%)
Mutual labels:  chart, charts
Flutter echarts
A Flutter widget to use Apache ECharts (incubating) in a reactive way.
Stars: ✭ 420 (-37.41%)
Mutual labels:  chart, charts
awesome-canvas
Canvas资源库大全中文版。An awesome Canvas packages and resources.
Stars: ✭ 288 (-57.08%)
Mutual labels:  chart, charts
React Jsx Highcharts
Highcharts built with proper React components
Stars: ✭ 336 (-49.93%)
Mutual labels:  chart, charts
android-charts
A curated list of Android Chart libraries.
Stars: ✭ 69 (-89.72%)
Mutual labels:  chart, charts
Hycharts
柱状图、折/曲线图、K线图(主图、交易量图、辅助图), 图与图可以自由组合, 支持分页加载数据 -----> 低内存、低耗电、滑动缩放顺滑
Stars: ✭ 394 (-41.28%)
Mutual labels:  chart, charts
React Chartjs 2
React components for Chart.js, the most popular charting library
Stars: ✭ 4,667 (+595.53%)
Mutual labels:  chart, charts
charts
My helm charts
Stars: ✭ 15 (-97.76%)
Mutual labels:  chart, charts
Wx Charts
微信小程序图表charts组件,Charts for WeChat Mini Program
Stars: ✭ 4,633 (+590.46%)
Mutual labels:  chart, charts
better-access-charts
Better charts for Access with chart.js
Stars: ✭ 19 (-97.17%)
Mutual labels:  chart, charts
acceptance-testing
Acceptance test suite for the Helm client
Stars: ✭ 22 (-96.72%)
Mutual labels:  chart, charts
awesome-tools
Open-source list of awesome data visualization tools (e.g., charting libraries) for software developers 📊📈
Stars: ✭ 47 (-93%)
Mutual labels:  chart, charts
Hxcharts
📊 Chart for iOS 仪表盘、柱状图、圆形图、折线图、环形图
Stars: ✭ 301 (-55.14%)
Mutual labels:  chart, charts
HCLineChartView
HCLineChartView is a beautiful iOS library for drawing line charts. It is highly customizable and easy to use.
Stars: ✭ 22 (-96.72%)
Mutual labels:  chart, charts
charts
☸️ Helm Charts for YOURLS
Stars: ✭ 12 (-98.21%)
Mutual labels:  chart, charts
Helm
The Kubernetes Package Manager
Stars: ✭ 20,846 (+3006.71%)
Mutual labels:  chart, charts
Aachartcore
📈📊☕️☕️☕️An elegant modern declarative data visualization chart framework for Android. Extremely powerful, supports line, spline, area, areaspline, column, bar, pie, scatter, angular gauges, arearange, areasplinerange, columnrange, bubble, box plot, error bars, funnel, waterfall and polar chart types.极其精美而又强大的 Android 数据可视化图表框架,支持柱状图、条形图、折线图、曲线图、折线填充图、曲线填充图、气泡图、扇形图、环形图、散点图、雷达图、混合图等各种类型的多达几十种的信息图图表,完全满足工作所需.
Stars: ✭ 424 (-36.81%)
Mutual labels:  chart, charts

Chartify

React.js plugin for building charts using CSS. Demo

Coverage Status

alt text

The source for this module is in the main repo.
Example app is here.
Backend service for the example app is here.
npm package is here.

Install

npm install chartify --save-dev

Getting started

import Chartify from 'chartify';

const data = [{
    xValue: '20.11.2016',
    yValue: 5,
    title: '007 Spectre'
}];

const config = {
    theme: 'blue',
    width: 50,			      
    height: 10,		
    boxSize: 20,
    isLineChart: false,
    bordered: false
};

<Chartify 
    data={data} 
    container="films-container" 
    config={config} 
/>

Passing props

Data prop is a dataset that should be an array of objects:
[{ xValue: '12.03.2019', yValue: 8, title: 'men in black' }]

Keys are required and types are:
{ xValue: string, yValue: number, title: string }

Container prop is a class that will be added to the chart container element. This is important in case you have more than one chart on your page.

Config prop is an object with properties:
theme:string - is color scheme of the chart, "default", "blue", "grey", "white" etc.
width:number - is the length of the data array by X-axis.
height:number - is the length of the data by Y-axis.
boxSize:number - is size of each box in pixels.
isLineChart:boolean - is param that determines if this is a line-chart.
bordered:boolean - is param that determines if each box has white borders.

License

The MIT License (MIT) Copyright (c) 2020

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