mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
* POS: Display fixes * Dashboard: Fix Top Items component * Dashboard: Fix App Sales component * Dashboard: Show revenue data for keypad Closes #5303.
17 lines
494 B
JavaScript
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
|
|
}
|
|
});
|
|
}
|
|
};
|
|
}
|