0

我正在尝试打印报告期间生成的图表。我可以将图表放在 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));

或者说我的 Chart 的 ActualWidth 和 ActualHeight 更新到我想要的大小,但是我在我的文档上得到了一个黑色图像,图表应该在哪里。

那么如何打印一张图表,并将其正确缩放到选定的纸张尺寸?

4

1 回答 1

1

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

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

我用myNewChart = new Chart() { DataContext = myOldChart.DataContext }之前说的。

我在我的项目中添加了一个新窗口,并在其中渲染了我的新图表,这样我就不会从中得到黑色图像。

转换Window.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>

然后在我的虚拟机中调用。

    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();
    }

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

于 2012-11-05T16:29:37.760 回答