复制/克隆和打印图表。 ActualWidth&的问题的ActualHeight

时间:2012-11-01 16:10:48

标签: wpf printing charts resize copy

我正在尝试打印报告期间生成的图表。我能够将图表放在DocumentPaginator文档上,但是我无法调整图表大小以适应页面。我注意到,如果我更改了报告程序的大小,这会改变图表大小会影响图表的缩放。这种认识向我展示了图表的ActualWidthActualHeight与缩放直接相关。

我试过了:

myChart.Width = newWidth;
myChart.Height = newHeight;

Measure(myChart.RenderSize);
Arrange(new Rect(0, 0, newWidth, newHeight));

但是这导致报告程序中的可视化图表调整大小,并且在第二次打印之前,可打印图表不会调整为新大小。

意识到myChart已连接到reportChart我尝试将reportChart复制/克隆到myChart。

我试过了:

public class Copy<T>
{
    public static T DeepCopy<T>(T element)
    {
        string xaml = XamlWriter.Save(element);
        StringReader xamlString = new StringReader(xaml);
        XmlTextReader xmlTextReader = new XmlTextReader(xamlString);
        var DeepCopyobject = (T)XamlReader.Load(xmlTextReader);
        return DeepCopyobject;
    }

}

myChart = XamlReader.Parse(XamlWriter.Save(reportChart.DataContext)) as Chart

但是string xaml = XamlWriter.Save(element);会花费太长时间,两者都会导致堆栈溢出。

我正在使用

myChart = new Chart() { DataContext = reportChart.DataContext }

制作我的副本,但ActualWidth和ActualHeight遇到'0',所以我无法判断Chart的DataContext是否正确复制。

我确实使用

调整了我的图表大小
myChart.Width = newWidth;
myChart.Height = newHeight;

myChart.Measure(new System.Windows.Size(newWidth, newHeight));
myChart.Arrange(new Rect(0, 0, newWidth, newHeight));

或者说我的图表的ActualWidth和ActualHeight更新为我想要的尺寸,但是我的文档中的图像应该是黑色图像。

那么如何在适当缩放到选定纸张尺寸的情况下打印图表?

1 个答案:

答案 0 :(得分:1)

所以我找到了对我有用的东西。我觉得这不是最干净的方法。

由于我需要缩放图表,我正在尝试打印,我需要复制/克隆图表。

我之前使用过myNewChart = new Chart() { DataContext = myOldChart.DataContext }

我为我的项目添加了一个新窗口,并在那里渲染了我的新图表,因此我没有从中获得黑色图像。

ConvertingWindow.xaml代码。此代码与我的原始图表代码相匹配。

<Window x:Class="QScanReportPrinting.ConvertingWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ConvertingWindow"
    xmlns:cht="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit">

<Grid>
    <Grid.Resources>
        <!-- CutomColumnStyle Style -->
        <Style x:Key="CutomColumnStyle" TargetType="cht:ColumnDataPoint">
            <!--Background Color-->
            <Setter Property="Background" Value="{Binding barColor}"/>

            <!--Annotations, or column value labels-->
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="cht:ColumnDataPoint">
                        <Grid>
                            <Rectangle Fill="{TemplateBinding Background}" Stroke="Black"/>
                            <Grid Margin="0 -20 0 0" HorizontalAlignment="Center" VerticalAlignment="Top">
                                <TextBlock Text="{TemplateBinding FormattedDependentValue}" FontWeight="Bold" Margin="2">
                                    <TextBlock.RenderTransform>
                                        <RotateTransform Angle="-60" />
                                    </TextBlock.RenderTransform>
                                </TextBlock>
                            </Grid>
                        </Grid>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>
    </Grid.Resources>

    <!--Chart for Graph-->
    <cht:Chart x:Name="UI_Chart" Title="{Binding GraphTitle}" Background="White">
        <cht:Chart.Series>
            <cht:ColumnSeries Title="{Binding ChartKey}" ItemsSource="{Binding GraphDataCollection}" IndependentValueBinding="{Binding Path=X}" DependentValueBinding="{Binding Path=Y}"
                              DataPointStyle="{StaticResource CutomColumnStyle}">
                <cht:ColumnSeries.IndependentAxis>
                    <cht:CategoryAxis Orientation="X">
                        <cht:CategoryAxis.AxisLabelStyle>
                            <Style TargetType="cht:AxisLabel">
                                <Setter Property="Template">
                                    <Setter.Value>
                                        <ControlTemplate TargetType="cht:AxisLabel">
                                            <TextBlock Text="{TemplateBinding FormattedContent}">
                                            <TextBlock.LayoutTransform>
                                                <RotateTransform Angle="-60"/>
                                            </TextBlock.LayoutTransform>
                                            </TextBlock>
                                        </ControlTemplate>
                                    </Setter.Value>
                                </Setter>
                            </Style>
                        </cht:CategoryAxis.AxisLabelStyle>
                    </cht:CategoryAxis>
                </cht:ColumnSeries.IndependentAxis>
            </cht:ColumnSeries>
        </cht:Chart.Series>
    </cht:Chart>
</Grid>

然后在我的VM中打电话。

    private void GetChartVisual()
    {
        // Initialize variable
        cw = new ConvertingWindow();

        cw.UI_Chart.DataContext = myNewChart.DataContext;

        // Set MainWindow to be the owner of this window
        cw.Owner = Application.Current.MainWindow;
        // Set DataContext to this DataContext 
        // Allows binding with variables already loaded
        cw.DataContext = this;

        cw.Show();

        myNewChart = cw.UI_Chart;

        cw.Close();
    }

通过这样做,它呈现了我的视觉效果。然后,我可以将其调整为我想要的大小,而不会影响我原来的图表。不是最漂亮的东西,但它确实有效。