view client/src/lib/DefaultDiagramTemplate.js @ 4357:e8af2ed8666e

refactor classification of Nash sutcliffe for better readability
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 09 Sep 2019 16:12:43 +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 };