I have a SciChart WPF control which works as expected when it is in a dedicated window, but if I place it inside of a grid it will not display properly. As you can see in the picture below, it displays the background and Axis properly, but the actual chart itself in the center is very tiny.
XAML
<UserControl …
xmlns:s="http://schemas.abtsoftware.co.uk/scichart">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="1*" />
<RowDefinition Height="Auto" />
<RowDefinition Height="2*"/>
</Grid.RowDefinitions>
<Grid Grid.Row="0">
Some other stuff
</Grid>
<GridSplitter Grid.Row="1" Height="5" HorizontalAlignment="Stretch" />
<s:SciChartSurface Grid.Row="2" x:Name="SciChartSurface">
<s:SciChartSurface.XAxis>
<s:DateTimeAxis AxisTitle="Time"/>
</s:SciChartSurface.XAxis>
<s:SciChartSurface.YAxis>
<s:NumericAxis/>
</s:SciChartSurface.YAxis>
<s:SciChartSurface.ChartModifier>
<s:ModifierGroup>
<s:RubberBandXyZoomModifier />
<s:ZoomExtentsModifier />
</s:ModifierGroup>
</s:SciChartSurface.ChartModifier>
</s:SciChartSurface>
</Grid>
</UserControl>
- Mi Yeun Kim asked 7 years ago
- You must login to post comments
I’m not able to reproduce from your code sample with v5.0.010963.
All our examples display a SciChartSurface inside a grid, without problem. Are you sure you’re not doing something else wrong in your application?
- Andrew Burnett-Thompson answered 7 years ago
- You must login to post comments
My mistake, it was actually due to that UserControl being placed inside of a TabControl/TabItem which in turn had a Style/Setter set to the type of image to control the size of the icons used in the tabs. I’ll end up deleting this question so it doesn’t clog up these forums.
- Mi Yeun Kim answered 7 years ago
- You must login to post comments