All Projects → yotamberk → Timeline Plus

yotamberk / Timeline Plus

Licence: mit
Timeline - chronological visualization of your data

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Timeline Plus

React Jsx Highcharts
Highcharts built with proper React components
Stars: ✭ 336 (+140%)
Mutual labels:  data-visualization, chart, graphs, charting-library
Graphic
A Flutter data visualization library based on Grammar of Graphics.
Stars: ✭ 173 (+23.57%)
Mutual labels:  data-visualization, chart, charting-library
Matplotplusplus
Matplot++: A C++ Graphics Library for Data Visualization 📊🗾
Stars: ✭ 2,433 (+1637.86%)
Mutual labels:  data-visualization, graphs, charting-library
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 (+105.71%)
Mutual labels:  data-visualization, chart, charting-library
Life Calendar
A look at the big picture.
Stars: ✭ 139 (-0.71%)
Mutual labels:  data-visualization, timeline, graphs
React Chartjs 2
React components for Chart.js, the most popular charting library
Stars: ✭ 4,667 (+3233.57%)
Mutual labels:  chart, charting-library, datavisualization
Amcharts4
The most advanced amCharts charting library for JavaScript and TypeScript apps.
Stars: ✭ 907 (+547.86%)
Mutual labels:  data-visualization, chart, charting-library
Anychart Android
AnyChart Android Chart is an amazing data visualization library for easily creating interactive charts in Android apps. It runs on API 19+ (Android 4.4) and features dozens of built-in chart types.
Stars: ✭ 1,762 (+1158.57%)
Mutual labels:  data-visualization, chart, charting-library
Chart
Quick & smart charting for STDIN
Stars: ✭ 521 (+272.14%)
Mutual labels:  chart, graphs, charting-library
Flutter echarts
A Flutter widget to use Apache ECharts (incubating) in a reactive way.
Stars: ✭ 420 (+200%)
Mutual labels:  data-visualization, chart, charting-library
Uplot
📈 A small, fast chart for time series, lines, areas, ohlc & bars
Stars: ✭ 6,808 (+4762.86%)
Mutual labels:  data-visualization, chart, graphs
React Vis
Data Visualization Components
Stars: ✭ 8,091 (+5679.29%)
Mutual labels:  data-visualization, chart, charting-library
Dex
Dex : The Data Explorer -- A data visualization tool written in Java/Groovy/JavaFX capable of powerful ETL and publishing web visualizations.
Stars: ✭ 1,238 (+784.29%)
Mutual labels:  data-visualization, datavisualization
Livechart
Android library to draw beautiful and rich line charts.
Stars: ✭ 78 (-44.29%)
Mutual labels:  data-visualization, graphs
Covid Charts
A collection of JavaScript-based data visualization tools and data for depicting spread of the COVID-19
Stars: ✭ 88 (-37.14%)
Mutual labels:  data-visualization, datavisualization
Ac D3
Javascript Library for building Audiovisual Charts in D3
Stars: ✭ 76 (-45.71%)
Mutual labels:  data-visualization, chart
Ss Vis Component
VIS components for a security system, to monitor the state and confirm the system's health running.
Stars: ✭ 88 (-37.14%)
Mutual labels:  data-visualization, chart
C3
📊 A D3-based reusable chart library
Stars: ✭ 9,163 (+6445%)
Mutual labels:  data-visualization, chart
Echarts
Apache ECharts is a powerful, interactive charting and data visualization library for browser
Stars: ✭ 49,119 (+34985%)
Mutual labels:  data-visualization, charting-library
Just Dashboard
📊 📋 Dashboards using YAML or JSON files
Stars: ✭ 1,511 (+979.29%)
Mutual labels:  data-visualization, chart

DEPRECATED: This project has been deprecated! All the features have been moved to vis-timeline (released in > v6.0.0) and is now maintained only there.

Feel free to check that project out and to submit issues \ pull requests there.

Timeline

Based on vis.js Timeline (v4.21.0) - https://github.com/almende/vis.git. The vis.js library was initially developed by Almende B.V.

The last few years, the timeline module has been maintained mainly by me. Due to lack of support in the other modules of vis, I decided to branch off and seperate this module to my own project where I can procceed the great work that has been done there, and update fixes, feature requests and versions more often with no dependency of the other modules in vis.

I intend to add features and fixes that are to my concern for my own projects. I will accept feature requests and merge requests, but will not prioritize them if not to my interest.

Install

Install via npm:

$ npm install timeline-plus

Or include the files via unpkg:

https://unpkg.com/timeline-plus/dist/timeline.js.

and

https://unpkg.com/timeline-plus/dist/timeline.css.

Basic Example

A basic example on loading a Timeline is shown below. More examples can be found in the examples directory of the project.

<!DOCTYPE HTML>
<html>
<head>
  <title>Timeline basic demo</title>
  <script src="timeline/dist/timeline.js"></script>
  <link href="timeline/dist/timeline.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="timeline"></div>

<script type="text/javascript">
  var container = document.getElementById('timeline');
  var data = [
    {id: 1, content: 'item 1', start: '2013-04-20'},
    {id: 2, content: 'item 2', start: '2013-04-14'},
    {id: 3, content: 'item 3', start: '2013-04-18'},
    {id: 4, content: 'item 4', start: '2013-04-16', end: '2013-04-19'},
    {id: 5, content: 'item 5', start: '2013-04-25'},
    {id: 6, content: 'item 6', start: '2013-04-27'}
  ];
  var options = {};
  var timeline = new timeline.Timeline(container, data, options);
</script>
</body>
</html>
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].