view client/src/lib/DefaultDiagramTemplate.js @ 5437:eeee1c411576 marking-single-beam

Pdf-Template: Use survey-date for {date-minor} when bottleneck survey is visible.
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 13 Jul 2021 12:24:29 +0200
parents ea36f163db44
children
line wrap: on
line source

const defaultDiagramTemplate = {
  name: "Default",
  properties: {
    paperSize: "a4"
  },
  elements: [
    {
      type: "diagramtitle",
      position: "topleft",
      offset: { x: 74, y: 25 },
      fontsize: 20,
      color: "steelblue"
    },
    {
      type: "diagram",
      position: "topleft",
      offset: { x: 24, y: 40 },
      width: 248,
      height: 119
    },
    {
      type: "diagramlegend",
      position: "topleft",
      offset: { x: 44, y: 167 },
      color: "black"
    }
  ]
};

export { defaultDiagramTemplate };