Draw ellipse in plane

I try draw ellipse as described in the documentation:

const curve = new THREE.EllipseCurve(
    0,  0,            // ax, aY
    10, 10,           // xRadius, yRadius
    0,  2 * Math.PI,  // aStartAngle, aEndAngle
    false,            // aClockwise
    0                 // aRotation
);

but this draws the figure in a plane XY, how can I draw an ellipse in another plane, for example, XZ?

Hi!
Cast Y-coordinate to Z-coordinate in the way z = -y
Example: https://jsfiddle.net/prisoner849/g15ab49x/
Picture: