Here is a small example to reproduce this, the XAML is just a window with a Grid on it:
Code: Select all
Imports Steema.TeeChart.WPF
Class Window1
Private _chart As TChart
Public Sub New()
InitializeComponent()
_chart = New TChart
chartHolder.Children.Add(_chart)
_chart.Legend.Visible = False
_chart.Walls.View3D = False
_chart.Aspect.View3D = False
Dim series As New Styles.Line()
series.FillSampleValues(100)
_chart.Series.Add(series)
End Sub
End Class
Let me know if there is a workaround for this issue, I need to get this fixed as soon as possible.
Thanks,
T-Mac