view client/src/lib/DefaultDiagramTemplate.js @ 4130:980f12d3c766 request_hist_bns

bottleneck import: Fixed detection of identical bottlenecks.
author Sascha Wilde <wilde@intevation.de>
date Thu, 01 Aug 2019 18:23:32 +0200
parents 2f024d6189ca
children ea36f163db44
line wrap: on
line source

const defaultDiagramTemplate = {
  name: "Default",
  properties: {
    paperSize: "a4"
  },
  elements: [
    {
      type: "diagramtitle",
      position: "topleft",
      offset: { x: 25, y: 25 },
      fontsize: 20,
      color: "steelblue"
    },
    {
      type: "diagram",
      position: "topleft",
      offset: { x: 21, y: 39 },
      width: 230,
      height: 110
    },
    {
      type: "diagramlegend",
      position: "topleft",
      offset: { x: 25, y: 167 },
      color: "black"
    }
  ]
};

export { defaultDiagramTemplate };