20 lines
386 B
JavaScript
20 lines
386 B
JavaScript
import Chart from "../../core.js";
|
|
export const name = "perUserDrive";
|
|
export const schema = {
|
|
totalCount: {
|
|
accumulate: true
|
|
},
|
|
totalSize: {
|
|
accumulate: true
|
|
},
|
|
incCount: {
|
|
range: "small"
|
|
},
|
|
incSize: {},
|
|
decCount: {
|
|
range: "small"
|
|
},
|
|
decSize: {}
|
|
};
|
|
export const entity = Chart.schemaToEntity(name, schema, true);
|