Setting manual scale of ternary plot
Posted: Sun Nov 14, 2010 9:47 am
If I set the the axes scale of the ternary plot manually, the minimum and maximum values should start at the the beginning and end of the axis, as with the points plot.
However, the minimum value starts at the left edge (or bottom) of the plot and the maxium value coincides with the right edge (or top) of the plot as the case may be.
Points1.Chart.Axes.Right.AutomaticMaximum = False
Points1.Chart.Axes.Bottom.AutomaticMaximum = False
Points1.Chart.Axes.Left.AutomaticMaximum = False
Points1.Chart.Axes.Top.AutomaticMaximum = False
Points1.Chart.Axes.Right.AutomaticMinimum = False
Points1.Chart.Axes.Bottom.AutomaticMinimum = False
Points1.Chart.Axes.Left.AutomaticMinimum = False
Points1.Chart.Axes.Top.AutomaticMinimum = False
Points1.Chart.Axes.Bottom.Maximum = XMax
Points1.Chart.Axes.Bottom.Minimum = XMin
Points1.Chart.Axes.Left.Maximum = YMax
Points1.Chart.Axes.Left.Minimum = YMin
Points1.Chart.Axes.Right.Maximum = YMax
Points1.Chart.Axes.Right.Minimum = YMin
However, the minimum value starts at the left edge (or bottom) of the plot and the maxium value coincides with the right edge (or top) of the plot as the case may be.
Points1.Chart.Axes.Right.AutomaticMaximum = False
Points1.Chart.Axes.Bottom.AutomaticMaximum = False
Points1.Chart.Axes.Left.AutomaticMaximum = False
Points1.Chart.Axes.Top.AutomaticMaximum = False
Points1.Chart.Axes.Right.AutomaticMinimum = False
Points1.Chart.Axes.Bottom.AutomaticMinimum = False
Points1.Chart.Axes.Left.AutomaticMinimum = False
Points1.Chart.Axes.Top.AutomaticMinimum = False
Points1.Chart.Axes.Bottom.Maximum = XMax
Points1.Chart.Axes.Bottom.Minimum = XMin
Points1.Chart.Axes.Left.Maximum = YMax
Points1.Chart.Axes.Left.Minimum = YMin
Points1.Chart.Axes.Right.Maximum = YMax
Points1.Chart.Axes.Right.Minimum = YMin