Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | import {HighchartsWidgetData} from '../types';
export const data: HighchartsWidgetData = {
data: {
graphs: [
{
data: [
{
y: 50.55,
color: 'rgb(255, 61, 9)',
},
{
y: 80.45,
color: 'rgb(255, 65, 9)',
},
{
y: 100.34,
color: 'rgb(255, 83, 9)',
},
],
name: 'Profit',
},
{
data: [
{
y: 350.65,
color: 'rgb(208, 189, 48)',
},
{
y: 119.82,
color: 'rgb(255, 95, 88)',
},
{
y: 452.15,
color: 'rgb(84, 165, 32)',
},
],
name: 'Sales',
},
],
categories: ['Furniture', 'Office Supplies', 'Technology'],
},
config: {
enableSum: true,
precision: 2,
},
libraryConfig: {
chart: {
type: 'column',
},
legend: {
title: {
text: 'Measure Values',
},
enabled: true,
},
colorAxis: {
startOnTick: false,
endOnTick: false,
min: 50.55,
max: 452.72057380654326,
stops: [
[0, 'rgb(255, 61, 100)'],
[0.5, 'rgb(255, 198, 54)'],
[1, 'rgb(84, 165, 32)'],
],
},
plotOptions: {
column: {
maxPointWidth: 50,
},
},
enableSum: true,
},
};
|