Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
D3 | 106,688 | 23,721 | 6,145 | 9 days ago | 272 | June 03, 2023 | 11 | isc | Shell | |
Bring data to life with SVG, Canvas and HTML. :bar_chart::chart_with_upwards_trend::tada: | ||||||||||
Echarts | 57,195 | 6,554 | 6,066 | 3 days ago | 119 | July 18, 2023 | 2,362 | apache-2.0 | TypeScript | |
Apache ECharts is a powerful, interactive charting and data visualization library for browser | ||||||||||
Visx | 18,035 | 99 | 16 hours ago | 33 | November 13, 2023 | 141 | mit | TypeScript | ||
🐯 visx | visualization components | ||||||||||
Excelize | 16,307 | 427 | a day ago | 187 | August 27, 2023 | 82 | bsd-3-clause | Go | ||
Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets | ||||||||||
Plotly.js | 16,152 | 718 | 260 | 15 hours ago | 246 | November 08, 2023 | 1,527 | mit | JavaScript | |
Open-source JavaScript charting library behind Plotly and Dash | ||||||||||
Plotly.py | 14,477 | 45 | a day ago | 89 | October 29, 2022 | 1,458 | mit | Python | ||
The interactive graphing library for Python :sparkles: This project now includes Plotly Express! | ||||||||||
Apexcharts.js | 13,435 | 377 | 516 | 3 days ago | 205 | October 17, 2023 | 300 | mit | JavaScript | |
📊 Interactive JavaScript Charts built on SVG | ||||||||||
G2 | 11,836 | 530 | 323 | 18 hours ago | 346 | November 28, 2023 | 94 | mit | TypeScript | |
📊 A concise and progressive visualization grammar. | ||||||||||
Sampler | 11,804 | 13 days ago | 1 | January 19, 2021 | 53 | gpl-3.0 | Go | |||
Tool for shell commands execution, visualization and alerting. Configured with a simple YAML file. | ||||||||||
Victory | 10,608 | 686 | 237 | a day ago | 238 | November 28, 2023 | 300 | other | JavaScript | |
A collection of composable React components for building interactive data visualizations |
The hottest trend in the financial world today has been cryptocurrency. These enigmas of market mentality have shown enormous profitability with staggering volatility. Still, the demand continues to soar as their value increases. As such, I wanted to create an interactive visualization of cryptocurrencies so that potential investors or enthusiasts could learn about each one.
CryptoViz is a single screen app with a central point for pie chart. The visualization is simplistic and intuitive. An interactive pie chart visualizes the currencies multiple JSON responses. A hover and click feature displays currency information through dynamic asynchronous API calls. After selection of currency the user may switch chart views and and visualize historical pricing.
Additionally, interactive "controls" will allow for user interaction and adjustment of data through dynamic API fetching.
Furthermore, rendering top headlines via D3 have in app page opening capabilities through iframes and modal features.
The core of this app is JavaScript and jQuery to handle the user control interaction. Within the JavaScript I implemented a few API additions to fetch the currency data. I utilize D3.js for the pie chart representation and TechanJS for the candlestick chart.
entry.js - the webpack bundle entry file. It also gives functionality to the controls and buttons, mainly through jQuery.
piechart.js - within the pie chart file will be the core of the rendering. It will handle all of the visualization and re-rendering of new visualization for user data.
chart.js - an added view allowing the user to see the historical pricing as a candlestick chart (a popular financial graph representing the days high, low, close and opening prices).
news.js - provides information extension to user with top headlines as well as in-site iframe rendering of links to news, achieved by having the browser make the call to the page.
var wrapper = article.append("div").attr('class', 'wrapper');
wrapper.append('div').attr('class', 'url').style('cursor', 'pointer').style('color', 'cyan')
.html("See more").on("click", () => {
window.open(a.url, "newsFrame");
$('#news-view').toggleClass("hidden instructions");
});
index.html - will run the piechart.js/chart.js and news.js as well as contain form inputs for the user interaction.