btcpayserver/BTCPayServer/Components/AppTopItems/Default.cshtml.js
d11n 492512f527
Dashboard: Show revenue data for keypad (#5317)
* POS: Display fixes

* Dashboard: Fix Top Items component

* Dashboard: Fix App Sales component

* Dashboard: Show revenue data for keypad

Closes #5303.
2023-09-14 09:26:47 +09:00

17 lines
494 B
JavaScript

if (!window.appTopItems) {
window.appTopItems = {
dataLoaded (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
}
});
}
};
}