remove the dicision lines of my chart.

  • Thread starter Thread starter Sergio Forever
  • Start date Start date
S

Sergio Forever

Hi.!!!

I would like to remove the line that they appear in background of my chart.
I´m doing a dynamic chart from asp language using Microsft Office Web
Charts.

Thanks.!!
 
Not sure exactly what you mean by "decision lines" (grid lines?) or "Web
Charts" (a chart distributed over the internet, or a chart that looks
like a spider web?), but try Chart|Chart Options|Gridlines and uncheck
any checked boxes.

Jerry
 
Jerry -

In ASP he'll need to do it in code.

Sergio -

You'll have to work out the exact syntax, but in Excel VBA, the commands
you need are:

With oChart '' oChart is the object variable for your chart
With.Axes(1,1) ' X axis (False by Default)
.HasMajorGridlines = False
.HasMinorGridlines = False
End With
With.Axes(2,1) ' Y axis
.HasMajorGridlines = False
.HasMinorGridlines = False
End With
End With

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______
 
Back
Top