' ); printWin.document.close(); printWin.focus(); printWin.onload = function () { // Fake current URL instead of about:blank try { printWin.history.replaceState({}, '', window.location.href); } catch (e) { } setTimeout(() => { printWin.document.title = document.title; printWin.focus(); printWin.print(); printWin.close(); }, 300); }; } else if (action === 'download-png') { chart.exportChart({ type: 'image/png', filename: downloadfileName }); } else if (action === 'download-jpeg') { chart.exportChart({ type: 'image/jpeg', filename: downloadfileName }); } else if (action === 'download-svg') { chart.exportChart({ type: 'image/svg+xml', filename: downloadfileName }); } } function applyDateRange(chartId, e) { const inputs = e.target.closest('.dropdown-menu').querySelectorAll('input[type="date"]'); const fromDate = inputs[0]?.value; const toDate = inputs[1]?.value; if (!fromDate || !toDate) { alert('Please select both from and to dates'); return; } const fromTimestamp = new Date(fromDate).getTime(); const toTimestamp = new Date(toDate).getTime(); if (fromTimestamp > toTimestamp) { alert('From date cannot be after To date'); return; } const chart = Highcharts.charts.find(c => c && c.renderTo.id === chartId); if (chart) { chart.xAxis[0].setExtremes(fromTimestamp, toTimestamp); e.target.closest('.dropdown-menu').classList.remove('show'); } }
BNB Price: $604.70 (+0.01%)
Charts & Stats

BNB Market Capitalization Chart

BNB Market Capitalization Chart

Click and drag in the plot area to zoom in

Download: CSV Data (Attribution Required)

About

The BNB Market Capitalization chart shows the historical breakdown of BNB daily market capitalization and average price.