Create Polyline Source

Hello,
I’m trying to create a polyline source in ParaView 5.8.0.
I went to Sources > Geometric Shapes > Poly Line Source.
In the dialog, why I can’t change the value of the X, Y, Z of the points?
I want to assign new coordinates.
Thanks

Definitely a bug !

Reported here :
https://gitlab.kitware.com/paraview/paraview/-/issues/19918

A workaround is to use python with

p = GetActiveSource()
p.Points = [0.0, 1.0, 0.0, 1.0, 0.0, 0.0]

Thanks, Mathieu :+1: