
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
horizontalcharts
Advanced tools
HorizontalCharts is a small JavaScript charting library with built-in live streaming feature.
The best way to get started is try a simple example.
Include the HorizontalCharts library:
<script src="horizontalcharts.js"></script>
Given a <canvas>:
<canvas id="chart" style="width:100%;"></canvas>
Create time series and chart with code resembling:
// Create time series
let ts1 = new TimeSeries(1, {labelText: "Day 1"});
let ts2 = new TimeSeries(2, {labelText: "Day 2"});
let ts3 = new TimeSeries(3, {labelText: "Day 3"});
// Add data to time series
ts1.data = [
new DataSample({color:'#FF0000', value: 20, desc:"Bob"}),
new DataSample({color:'#BB0000', value: 30, desc:"John"}),
new DataSample({color:'#880000', value: 10, desc:"Max"}),
new DataSample({color:'#330000', value: 40, desc:"Ann"})
];
ts2.data = [
new DataSample({color:'#0000FF', value: 10, desc:"Bob"}),
new DataSample({color:'#0000BB', value: 50, desc:"John"}),
new DataSample({color:'#000088', value: 20, desc:"Max"}),
new DataSample({color:'#000033', value: 20, desc:"Ann"})
];
ts3.data = [
new DataSample({color:'#00FF00', value: 10, desc:"Bob"}),
new DataSample({color:'#00BB00', value: 40, desc:"John"}),
new DataSample({color:'#008800', value: 15, desc:"Ann"})
];
// Find the canvas
let canvas = document.getElementById('chart');
// Create the chart
let options = {xAxis: {xLabel:"Percentage of completion"}};
let chart = new HorizontalChart(options);
chart.addTimeSeries(ts1, ts2, ts3);
chart.streamTo(canvas);
FAQs
Horizontal Charts: horizontal JavaScript bar charts
The npm package horizontalcharts receives a total of 21 weekly downloads. As such, horizontalcharts popularity was classified as not popular.
We found that horizontalcharts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.