How do I make a correct Cartesian plot using the WinRT XAML Toolkit?

My graphs currently look like this:

enter image description here

For now, I want them to look something like this.

enter image description here

(As with double-sided axles on both sides)

Can this be done using the WinRT XAML Toolkit? I cannot figure out how to make these Cartesian plots using Lineseries. Will this automatically happen if I take a linear step with a range of values ​​from negative to positive (and if so, I'd appreciate it if someone can show me how to do this)?

<Charting:Chart x:Name="LineChart" 
                    HorizontalAlignment="Left" VerticalAlignment="Top" Width="600" Height="400">
        <Charting:LineSeries            
           Title="Smartphone Companies" Margin="0" IndependentValuePath="Time" DependentValuePath="Amount" IsSelectionEnabled="True"/>
        </Charting:Chart>

      

+3


source to share





All Articles