Is it possible to use a TextBox Value/Control instead of "Auto" or a Double (100)?
<asp:ChartArea Name="ChartArea1">
<AxisX Maximum= "Auto" Minimum="100">
</AxisX>
For example if my chart has (Y) [ActaulValue] of 10,20,60,20,50,40,70....
I have 3 controls: [MINValue] ; [MaxValue] and [TargetValue]
I would like my graph to use [MINValue] and [MaxValue] as the Y axis min and max values.
Such as: <AxisY Maximum= "[MaxValue]" Minimum="[MINValue]">
Thanks.