Options
All
  • Public
  • Public/Protected
  • All
Menu

PiWeb Plot Extension API Reference

PiWeb Plot Extension

Quickstart

In order to create your first own plot extension, you should be familiar with JavaScript and Json. As JavaScript is untyped, we suggest you to develop your extension using TypeScript.

PiWeb searches for extensions in several locations. Ordered by their priority, these are:

  • In the application data directory %APPDATA%\Zeiss\PiWeb\Extensions
  • In the program data directory %PROGRAMDATA%\Zeiss\PiWeb\Extensions
  • The Extensions folder in the PiWeb installation directory

The package structure looks like the following:

Hint: You can download the result of the quickstart guide here:

PiWeb Version Download
6.6 - 7.0 Download
7.2 or later Download
7.4 or later Download
7.8 or later Download
8.0 or later Download
8.4 or later Download

1. Create the folder MyPlot

In case the Extensions folder doesn't exist, you must create it first. Now create your project folder in the extensions folder and name it MyPlot.

2. Create the file package.json

The package configuration contains static parameters of your extension, such as its name, a description, the appearance of its entry in the PiWeb toolbox and the properties that are adjustable by the user. A complete reference of the options can be found in the chapter package. For now, use the minimum setup shown below.

{
    "$schema":"https://zeiss-piweb.github.io/PiWeb-Plot-Extension/schema.json",
    "name": "myplot",
    "version": "1.0.0",
    "main": "lib",
    "engines": {
        "piweb": "^1.0"
    },
    "piweb_actions": {
        "load": "compile_typescript"
    },
    "piweb_extension": {
        "type": "plot",        
        "display": "MyPlot"        
    }
}

3. Create the file tsconfig.json

It contains necessary information for the typescript compiler, like input and output directories and compiler switches. Just copy the code below and you'll be fine.

{
    "compilerOptions": {
    "target": "es6",
    "strictNullChecks": true,
    "module": "commonjs",
    "sourceMap": false,
    "moduleResolution": "node",
    "noImplicitAny": true,
    "outDir" : "lib",       
    "rootDir" : "src",
    "typeRoots": ["./@types"]
    }
}

4. Create the folder @types and copy the file piweb-1-x.d.ts into it

These are the type definitions of the PiWeb plot extension interface. It will enable productivity features like syntax highlighting and auto completion in your IDE. The folder @types was defined as the type root in the tsconfig.json file. Please note, that versions above 1.0 only work with newer PiWeb versions.

Hint: You can download the type definition file here:

PiWeb Version Download
6.6 - 7.0 Download
7.2 or later Download
7.4 or later Download
7.8 or later Download
8.0 or later Download
8.4 or later Download

5. Create the folder src and create the file index.ts in it

This is where your extension is actually rendered. In the example below, we use the drawing API to render an orange rectangle that fills the whole area of the plot. A complete reference of the drawing functions can be found in the chapter DrawingContext.

import * as piweb from 'piweb'

piweb.events.on("render", renderPlot);

function renderPlot(drawingContext: piweb.drawing.DrawingContext) {
    const size = piweb.environment.getSize();
    drawingContext.setBrush( piweb.drawing.Brush.orangeRed);
    drawingContext.drawRectangle(0, 0, size.width, size.height);
}

When we save all files and start PiWeb Designer, we should find our extension in the General category of the toolbox:

For a complete reference, please have a look at the Index. Please pay special attention to our Tips section, as it contains important information for developers.

Generated using TypeDoc