This question is locked. New answers and comments are not allowed.
Hi,
I am not able to do the camera extension work. I have made a new object that inherits the RadChart, and create the property as follow:
So, with that property, I am able to change the graph 2D into 3D, but the camera don't work and I don't know how to do it work.
Can you help me to do that?
Thanks
I am not able to do the camera extension work. I have made a new object that inherits the RadChart, and create the property as follow:
Public Property GraphType() As Integer Get Return type End Get Set (ByVal value As Integer) type = value If type = LINE3D Then Dim camera As New CameraExtension 'Just for test camera.RotateY(-30) chart.DefaultView.ChartArea.Extensions.Add(camera) End If End SetEnd PropertySo, with that property, I am able to change the graph 2D into 3D, but the camera don't work and I don't know how to do it work.
Can you help me to do that?
Thanks