I'm using teechart6 in asp page and trying to make my colorgrid to show as irregular grid. I can make this work just fine in Visual Basic, but it doesn't seem to work in asp.
Code: Select all
Chart1.Panel.Gradient.Visible=True
Chart1.Series(0).asColorGrid.irregularGrid=true
Chart1.Series(0).asColorGrid.Pen.Visible=false
Code: Select all
OutputStream=Chart1.Export.asPNG.SaveToStream
Response.Binarywrite OutputStream
-Matti