VB.net图表打印不正确

时间:2015-08-10 21:38:05

标签: .net vb.net printing charts

我在vb.net项目中有一个无法正确打印的图表。它在程序中出现如下。 In program

但是,当打印到PDF或打印机时,它显示如下。 Printed

如何打印系列标签,如程序所示?

我的打印代码如下:

Private Sub cmdPrintResults_Click(sender As Object, e As EventArgs) Handles cmdPrintResults.Click

    printDialogFormUI.Document = printResults
    printResults.DefaultPageSettings.Landscape = True
    If printDialogFormUI.ShowDialog() = DialogResult.OK Then printResults.Print()

End Sub

Private Sub printResults_PrintPage(sender As Object, e As Printing.PrintPageEventArgs) Handles printResults.PrintPage
    ' Create Rectangle structure, used to set the position of the chart 
    Dim myRec As New System.Drawing.Rectangle(0, 0, 1200, 800)
    chartResults.Printing.PrintPaint(e.Graphics, myRec)

End Sub       

感谢您的协助

1 个答案:

答案 0 :(得分:0)

我通过使用注释并将它们锚定到数据点而不是为每个数据点添加标签来解决了这个问题。