The PiWeb Plot Extensions allow you to write your own extensions with TypeScript for the quality data management system ZEISS PiWeb. |
---|
A comprehensive manual can be found here. Examples can be found in the sample report 'Plot Extensions' that is shipped with PiWeb Monitor 6.6. The source packages of these examples are attached to the reports inspection plan for convenience.
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 |
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
.
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 in the manual. 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"
}
}
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"]
}
}
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 |
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 drawing in the manual.
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 the PiWeb Designer, we should find our extension in the General section of the toolbox:
For further information, please read the reference manual.