UNPKG

apisearch-events-ui

Version:

Javascript User Interface to visualize all events data.

31 lines 647 B
/** * LineChart default options */ export const lineChartDefaultOptions = { animation: false, maintainAspectRatio: false, legend: { position: "bottom" }, scales: { xAxes: [{ display: true, ticks: { padding: 10, autoSkip: true, maxTicksLimit: 9 } }], yAxes: [{ display: true, ticks: { padding: 10, beginAtZero: true }, gridLines: { drawTicks: false, display: false } }] } };