Page 1 of 1

[SOLVED] PathGeometry Not Rendering Correctly in JS and Simulator (OK in Design Mode)

Posted: Tue Oct 03, 2017 10:02 am
by TaterJuice
Displays correct in Design - Incorrect in Simulator and in Browser

Code: Select all

<Grid
   HorizontalAlignment="Stretch"
   VerticalAlignment="Stretch"
   Margin="0,30,0,0">
   <Canvas
      x:Name="Arc1"
      HorizontalAlignment="Center"
      VerticalAlignment="Top">
      <Path Name="Circle" Stroke="Red" StrokeThickness="5">
         <Path.Data>
            <PathGeometry>
               <PathFigure StartPoint="0,-20">
                  <ArcSegment IsLargeArc="True"
                     Size="50, 50"
                     Point="0, 120"
                     SweepDirection="Clockwise" />
               </PathFigure>
            </PathGeometry>
         </Path.Data>
      </Path>
   </Canvas>
   <Canvas
      x:Name="Arc2"
      HorizontalAlignment="Center"
      VerticalAlignment="Top">
      <Path Name="Circle2" Stroke="Green" StrokeThickness="4">
         <Path.Data>
            <PathGeometry>
               <PathFigure StartPoint="0,-25">
                  <ArcSegment IsLargeArc="True"
                     Size="50, 50"
                     Point="0, 125"
                     SweepDirection="Counterclockwise" />
               </PathFigure>
            </PathGeometry>
         </Path.Data>
      </Path>
   </Canvas>
</Grid>

Sample Screenshot: http://image.ibb.co/e7Ap6G/semicircles.png
Image

Re: PathGeometry Not Rendering Correctly in JS and Simulator (OK in Design Mode)

Posted: Wed Oct 11, 2017 2:01 am
by JS-Support @Userware
Hi,

Thanks for reporting this issue.

We are going to fix it asap.

Regards,
JS-Support

Re: PathGeometry Not Rendering Correctly in JS and Simulator (OK in Design Mode)

Posted: Wed Oct 11, 2017 2:44 pm
by TaterJuice
JS-Support wrote:Hi,

Thanks for reporting this issue.

We are going to fix it asap.

Regards,
JS-Support


Looking forward to it, thank you!

Re: PathGeometry Not Rendering Correctly in JS and Simulator (OK in Design Mode)

Posted: Tue Nov 14, 2017 4:40 am
by JS-Support @Userware
Hi,

We have fixed the issue in Beta 12.6, which will be released in a few days.

Thanks.
Regards,
JS-Support

Re: PathGeometry Not Rendering Correctly in JS and Simulator (OK in Design Mode)

Posted: Wed Nov 15, 2017 8:08 am
by TaterJuice
JS-Support wrote:Hi,

We have fixed the issue in Beta 12.6, which will be released in a few days.

Thanks.
Regards,
JS-Support


Yayyyy! Looking forward to it.