mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-01 00:59:15 +01:00
19 lines
508 B
JavaScript
19 lines
508 B
JavaScript
|
if (!window.appTopItems) {
|
||
|
window.appTopItems =
|
||
|
{
|
||
|
dataLoaded: function (model) {
|
||
|
const id = "AppTopItems-" + model.id;
|
||
|
const series = model.salesCount;
|
||
|
new Chartist.Bar(`#${id} .ct-chart`, { series }, {
|
||
|
distributeSeries: true,
|
||
|
horizontalBars: true,
|
||
|
showLabel: false,
|
||
|
stackBars: true,
|
||
|
axisY: {
|
||
|
offset: 0
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
}
|