User (Legacy) Posted July 24, 2003 Report Share Posted July 24, 2003 Are there is a way not to show the vertical line across x=0 and horizontal line across Y=0 for line chart. Thanks Link to comment Share on other sites More sharing options...
Software FX Posted July 25, 2003 Report Share Posted July 25, 2003 Yes. As a matter of fact that's the default. If you have negative and positive values. -- FP Software FX, Inc. Link to comment Share on other sites More sharing options...
User (Legacy) Posted July 25, 2003 Author Report Share Posted July 25, 2003 Which properties to set? Thanks "SoftwareFX Support" <support@softwarefx.com> wrote in message news:oLTFBqrUDHA.1496@WEBSERVER1... > Yes. As a matter of fact that's the default. If you have negative and > positive values. > > -- > FP > Software FX, Inc. > > Link to comment Share on other sites More sharing options...
Software FX Posted July 25, 2003 Report Share Posted July 25, 2003 As I said, this is the default behavior. NO properties need to be set. If you are not getting this lines then you must be taking them out by mistake. There are many things you might be doing, changing the axis line color, not having negative values, setting some incorrect Axis style, etc. I can't really tell. I suggest you start with a default chart, set the Min and Max to negative and positive values respectively and go from there, see what's different in your code. You may attach your code to see if we can spot where are you turning these off. Or maybe you are turning it off at design time, it's hard to tell. -- FP Software FX, Inc. Link to comment Share on other sites More sharing options...
User (Legacy) Posted July 28, 2003 Author Report Share Posted July 28, 2003 Thanks for answer. Actually these lime across (0,0) are there. I do not want these line show up. I thought there were a property to take these line out. "Software FX Support" <support@softwarefx.com> wrote in message news:K9Xm3owUDHA.1496@WEBSERVER1... > As I said, this is the default behavior. NO properties need to be set. > > If you are not getting this lines then you must be taking them out by > mistake. > > There are many things you might be doing, changing the axis line color, not > having negative values, setting some incorrect Axis style, etc. I can't > really tell. I suggest you start with a default chart, set the Min and Max > to negative and positive values respectively and go from there, see what's > different in your code. > > You may attach your code to see if we can spot where are you turning these > off. Or maybe you are turning it off at design time, it's hard to tell. > > > -- > FP > Software FX, Inc. > > Link to comment Share on other sites More sharing options...
Software FX Posted August 5, 2003 Report Share Posted August 5, 2003 Yes there is. To turn these lines OFF you do: chart.AxisY.Style &= ~AxisStyle.BreakZero; chart.AxisX.Style &= ~AxisStyle.BreakZero; -- FP Software FX, Inc. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.