This question is locked. New answers and comments are not allowed.
I am trying to create two sparklines that share a y axis.
The x axis is fine but both scale individually to take full height of parent container. How can i force them to share the same y axis? I'm considering adding an additional point having the min/max to initialize the same scale... however hopefully there is a better approach.
thanks
<Grid Grid.Column="0"> <Controls:RadAreaSparkline ItemsSource="{Binding DataPoints}" XValuePath="Date" YValuePath="Value1" ShowHighPointIndicators="False" ShowLowPointIndicators="False" Margin="0,3" /> <Controls:RadScatterSparkline ItemsSource="{Binding DataPoints}" XValuePath="Date" YValuePath="Value2" ShowHighPointIndicators="False" ShowLowPointIndicators="False" Margin="0,3" ItemFill="#FFde3914" /></Grid>