Search found 4 matches
- Thu Sep 06, 2007 5:55 pm
- Forum: ActiveX
- Topic: Canvas disappears
- Replies: 3
- Views: 3266
Canvas disappears
Narcís, I drew a Line diagonally from top left to bottom right, using the code above: With TChart1 .Canvas.MoveTo .Axis.Left.Position, .Axis.Top.Position .Canvas.LineTo .Axis.Right.Position, .Axis.Bottom.Position End With But when I scrolled the graph, the line disappears. Can you help me fixed this...
- Wed Sep 05, 2007 7:20 pm
- Forum: ActiveX
- Topic: Canvas disappears
- Replies: 3
- Views: 3266
Canvas disappears
Sirs,
I drew a legend in the graph when I clicked in one point.
I'm using canvas, but when I changed the focus to another form, my legend disappear.
Or when I scroll the graph the legend disappear too.
Can You help me?
Igor
I drew a legend in the graph when I clicked in one point.
I'm using canvas, but when I changed the focus to another form, my legend disappear.
Or when I scroll the graph the legend disappear too.
Can You help me?
Igor
- Tue Sep 04, 2007 4:16 pm
- Forum: ActiveX
- Topic: Change the Scroll Buttom
- Replies: 3
- Views: 3367
- Tue Sep 04, 2007 3:09 pm
- Forum: ActiveX
- Topic: Change the Scroll Buttom
- Replies: 3
- Views: 3367
Change the Scroll Buttom
Sirs, I'm trying change the scroll to left mouse buttom and zoom to right mouse buttom. See the code above: document.frmGraph.Chart1.Zoom.MouseButton = 2 document.frmGraph.Chart1.Scroll.MouseButton = 1 document.frmGraph.Chart1.Scroll.Enable = true document.frmGraph.Chart1.Zoom.Enable = true But when...