Hi,
I am wondering is there any way stretch chart in chart Area. See this photo chart is displaying in very small area i want to strech chart without increasing chart area width or height.
Try the scale functions avilable in the ultrachart
by
Maguesh
Scale function is not working. Can you please give me how to use scale function or is there any other way to streach only chart.
In short i have to set UltraChart1.Transform3D.Scale properties. I have solved the problem. Thanks dear.
Hi
And also write this functions
Public Property ScaleChart() As Single Get Return Me.UltraChart1.Transform3D.Scale End Get Set(ByVal value As Single) Me.UltraChart1.Transform3D.Scale = value End Set End Property
First Place a track bar in you form namely scalechart
then set the maximum=100 and minimum=0 in the track bar properties
Private Sub Scalechart_ValueChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles Scalechart.ValueChanged FormGraph.ScaleChart = Scalechart.Value End Sub