Page 1 of 1
Tee Chart for Angular & Draw a Painting Manually
Posted: Tue Apr 18, 2023 6:12 am
by 17795639
Hello Team,
I have been working on Angular and HTML 5, we are looking to draw a painting using a mouse event before the draw series.
Re: Tee Chart for Angular & Draw a Painting Manually
Posted: Tue Apr 18, 2023 9:29 am
by Marc
Hello,
There is a Series "onbeforedraw" event you can use in a similar way to the ondraw event in this example:
Code: Select all
Chart1.ondraw=function() {
var x1 = Chart1.axes.bottom.calc(4),
y1 = Chart1.axes.left.calc(70),
x2 = Chart1.axes.bottom.calc(7),
y2 = Chart1.axes.left.calc(40);
// X,Y, Width, Height
myFormat.rectangle(x1,y1, x2-x1, y2-y1);
}
see:
https://www.steema.com/files/public/tee ... _paint.htm
Regards,
Marc Meumann
Re: Tee Chart for Angular & Draw a Painting Manually
Posted: Wed Apr 26, 2023 12:38 pm
by 17795639
Re: Tee Chart for Angular & Draw a Painting Manually
Posted: Wed May 03, 2023 2:58 pm
by Marc
Hello,
This example (mousedown-drag line draw) includes code that I think is relevant to what you want:
https://www.steema.com/files/public/tee ... /lines.htm
I'll have a look to porting some elements over to the angular example,
Regards,
Marc Meumann
Re: Tee Chart for Angular & Draw a Painting Manually
Posted: Tue May 09, 2023 3:46 pm
by Marc
Hello,
The standard angular example has been modified. The location has changed to:
https://gitlab.com/steema/teechartjs/-/ ... ns/angular
- drawline.jpg (124.78 KiB) Viewed 26924 times
The demo includes code for mouse movement and custom output to the canvas.
Regards,
Marc Meumann