view client/src/lib/DefaultDiagramTemplate.js @ 4056:1ecfe5d015b0

Fixup rev. 4bf1c8d91bac: take new column into account in tests
author Tom Gottfried <tom@intevation.de>
date Thu, 25 Jul 2019 08:06:22 +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 };