A histogram displayed as step lines (outline only) without filled bars. The distribution is shown as connected horizontal and vertical line segments, creating a step function appearance.

// anyplot.ai
// histogram-stepwise: Step Histogram
// Library: echarts 6.1.0 | JavaScript 22.23.2
// Quality: 90/100 | Created: 2026-09-05
const t = window.ANYPLOT_TOKENS;
// --- Data (in-memory, deterministic LCG) -----------------------------------
// Reaction times (ms) from a simulated cognitive test, n=1500. Modeled as an
// ex-Gaussian (normal + exponential tail) — the standard shape for human
// reaction-time data: a sharp rise near the mode and a long right tail.
function lcg(seed) {
let state = seed;
return () => {
state = (state * 1664525 + 1013904223) % 4294967296;
return state / 4294967296;
};
}
const rand = lcg(42);
function randNormal(mean, std) {
const u1 = rand() || 1e-9;
const u2 = rand();
const z = Math.sqrt(-2 * Math.log(u1)) * Math.cos(2 * Math.PI * u2);
return mean + z * std;
}
function randExponential(mean) {
return -mean * Math.log(1 - rand());
}
const reactionTimes = [];
for (let i = 0; i < 1500; i++) {
reactionTimes.push(randNormal(230, 28) + randExponential(55));
}
// --- Binning ----------------------------------------------------------------
const binCount = 24;
const minVal = Math.min(...reactionTimes);
const maxVal = Math.max(...reactionTimes);
const binWidth = (maxVal - minVal) / binCount;
const counts = new Array(binCount).fill(0);
for (const v of reactionTimes) {
let idx = Math.floor((v - minVal) / binWidth);
if (idx >= binCount) idx = binCount - 1;
counts[idx]++;
}
const binLeftEdges = Array.from({ length: binCount }, (_, i) => minVal + i * binWidth);
let peakIdx = 0;
for (let i = 1; i < binCount; i++) {
if (counts[i] > counts[peakIdx]) peakIdx = i;
}
const peakCenter = binLeftEdges[peakIdx] + binWidth / 2;
// Step-line points: ECharts' native `step: "end"` draws the horizontal
// segment across each bin and the vertical segment between bins; closing the
// ends to zero makes the outline read as a step function.
const stepData = [
[minVal, 0],
...binLeftEdges.map((x, i) => [x, counts[i]]),
[maxVal, 0],
];
// --- Init ---------------------------------------------------------------
const chart = echarts.init(document.getElementById("container"));
// --- Option -----------------------------------------------------------------
chart.setOption({
animation: false,
color: t.palette,
backgroundColor: "transparent",
title: {
text: "histogram-stepwise · javascript · echarts · anyplot.ai",
left: "center",
textStyle: { color: t.ink, fontSize: 22, fontWeight: 500 },
},
grid: { left: 90, right: 60, top: 90, bottom: 90 },
xAxis: {
type: "value",
name: "Reaction Time (ms)",
nameLocation: "middle",
nameGap: 40,
nameTextStyle: { color: t.ink, fontSize: 16 },
min: Math.floor(minVal / 10) * 10,
max: Math.ceil(maxVal / 10) * 10,
axisLabel: { color: t.inkSoft, fontSize: 14 },
axisLine: { lineStyle: { color: t.inkSoft } },
axisTick: { show: false },
splitLine: { show: false },
},
yAxis: {
type: "value",
name: "Count",
nameLocation: "middle",
nameGap: 60,
nameTextStyle: { color: t.ink, fontSize: 16 },
min: 0,
axisLabel: { color: t.inkSoft, fontSize: 14 },
axisLine: { show: false },
axisTick: { show: false },
splitLine: { lineStyle: { color: t.grid } },
},
series: [
{
type: "line",
step: "end",
data: stepData,
showSymbol: false,
lineStyle: { color: t.palette[0], width: 3 },
emphasis: { disabled: true },
markLine: {
symbol: "none",
silent: true,
lineStyle: { color: t.inkSoft, type: "dashed", width: 1.5 },
label: {
formatter: `Peak: ${Math.round(peakCenter)} ms`,
color: t.ink,
fontSize: 13,
position: "insideEndTop",
},
data: [{ xAxis: peakCenter }],
},
},
],
});
Runnable source as JSON, for any HTTP client: https://api.anyplot.ai/specs/histogram-stepwise/echarts/code. Any spec id and library id listed in llms-full.txt fit the same URL shape; every URL below is complete and callable.
{
"spec_id": "histogram-stepwise",
"language": "javascript",
"library": "echarts",
"page": "https://anyplot.ai/histogram-stepwise/javascript/echarts",
"hub": "https://anyplot.ai/histogram-stepwise",
"code_json": "https://api.anyplot.ai/specs/histogram-stepwise/echarts/code",
"spec_json": "https://api.anyplot.ai/specs/histogram-stepwise",
"render_light_png": "https://storage.googleapis.com/anyplot-images/plots/histogram-stepwise/javascript/echarts/plot-light.png",
"render_dark_png": "https://storage.googleapis.com/anyplot-images/plots/histogram-stepwise/javascript/echarts/plot-dark.png",
"interactive_light_html": "https://storage.googleapis.com/anyplot-images/plots/histogram-stepwise/javascript/echarts/plot-light.html",
"interactive_dark_html": "https://storage.googleapis.com/anyplot-images/plots/histogram-stepwise/javascript/echarts/plot-dark.html",
"quality_score": 90.0,
"license": "MIT",
"guide": "https://anyplot.ai/llms.txt"
}Part of Step Histogram on anyplot.ai.