Measurement Studio for VB6

cancel
Showing results for 
Search instead for 
Did you mean: 

How I can hide a graph line without removing plot.

How I can hide a graph line without removing plot.
I am using cwgraph1.chartXvsY arr1,arr2 in Visual Basic.
Removig of graph making graph very complicated.
Please help.
0 Kudos
Message 1 of 2
(3,185 Views)
By 'graph line' I'm assuming you mean a plot. You can hide a plot by setting its LineStyle property to cwLineNone. For example:

CWGraph1.Plots(1).LineStyle = cwLineNone

I hope this helps.

David
0 Kudos
Message 2 of 2
(3,185 Views)