All Projects → nefe → Taco

nefe / Taco

Licence: other
taco-charts

Programming Languages

typescript
32286 projects
CSS
56736 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Taco

laravel-charts
📊 Create a chart in Laravel using Chart.js and AJAX
Stars: ✭ 36 (+125%)
Mutual labels:  charts
UCharts
UCharts allows creating radar charts, pie charts, half pie chart in your Unity3d Games.
Stars: ✭ 33 (+106.25%)
Mutual labels:  charts
dash-lollapalooza-brasil-2018
🎟Using Plotly to visualize data from Lollapalooza
Stars: ✭ 23 (+43.75%)
Mutual labels:  charts
dashblocks-template
Dashblocks Vue Material Admin Template
Stars: ✭ 143 (+793.75%)
Mutual labels:  charts
d3-in-angular
How to build reactive charts in Angular 8 using D3
Stars: ✭ 47 (+193.75%)
Mutual labels:  charts
US-chartbook
Automated PDF containing charts, tables, maps, and analysis of the US economy
Stars: ✭ 16 (+0%)
Mutual labels:  charts
uncharted
No description or website provided.
Stars: ✭ 31 (+93.75%)
Mutual labels:  charts
Reports.JS
Stimulsoft Reports.JS is a reporting tool for Node.js and JavaScript applications.
Stars: ✭ 33 (+106.25%)
Mutual labels:  charts
datalith
Simple, batteries included, components to build beautiful data visualizations
Stars: ✭ 29 (+81.25%)
Mutual labels:  charts
LineChartView
An interactive line chart written in SwiftUI with many customizations (colors, line size, dots, haptic feedbacks). Support value and time series.
Stars: ✭ 59 (+268.75%)
Mutual labels:  charts
avbot-charts
Aviation charts
Stars: ✭ 20 (+25%)
Mutual labels:  charts
wallstreet
Stock Quotes and Charts for the Terminal
Stars: ✭ 75 (+368.75%)
Mutual labels:  charts
Mermaid
Provides a parser function to generate diagrams and flowcharts with the help of the mermaid script language
Stars: ✭ 27 (+68.75%)
Mutual labels:  charts
charts
Curated kubernetes helm charts with well-defined structures
Stars: ✭ 24 (+50%)
Mutual labels:  charts
vscode-coding-tracker-server
🐔 VSCode Coding Tracker extension server side program
Stars: ✭ 107 (+568.75%)
Mutual labels:  charts
deloominator
Shed the light on your data!
Stars: ✭ 47 (+193.75%)
Mutual labels:  charts
gauge-chart
Gauge Chart Library
Stars: ✭ 45 (+181.25%)
Mutual labels:  charts
Twitter-Sentiment-Analyzer
Twitter Sentiment Analyzer
Stars: ✭ 13 (-18.75%)
Mutual labels:  charts
CHCharts-wechat
📈A charts component for WeChat mini-app development(一款用于微信小程序开发中的图表组件,使用者可以快速添加并集成到微信小程序开发中).
Stars: ✭ 71 (+343.75%)
Mutual labels:  charts
vue-map-chart
VueJS map chart component
Stars: ✭ 27 (+68.75%)
Mutual labels:  charts

Taco Charts

How to start

npm start launches a server, Navigate to localhost:5000.

Usage

const data = {
  labels: [
    '12am-3am',
    '3am-6pm',
    '6am-9am',
    '9am-12am',
    '12pm-3pm',
    '3pm-6pm',
    '6pm-9pm',
    '9am-12am'
  ],
  datasets: [
    {
      title: 'Some Data',
      values: [25, 40, 30, 35, 8, 52, 17, -4]
    },
    {
      title: 'Another Set',
      values: [25, 50, -10, 15, 18, 32, 27, 14]
    }
  ]
};

const chart = new Chart({
  parent: '#chart', // or a DOM element
  title: 'My Chart',
  data: data,
  type: 'bar', // or 'line', 'scatter', 'pie', 'percentage'
  height: 250,

  colors: ['#7cd6fd', '#743ee2']
});

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