User (Legacy) Posted October 3, 2001 Report Share Posted October 3, 2001 Hi, By default all the rows that appear in DataEditor are editable if allowedit property of that chart is set to true. Can editing of one of the rows in DataEditor be disabled so that the row can not be edited. Thanks Quote Link to comment Share on other sites More sharing options...
Software FX Posted October 3, 2001 Report Share Posted October 3, 2001 You can do this by trapping the ChangeValue event and deciding on a cell-by-cell basis whether or not that cell should be edited. For example, if you don't want the second series to be edited (second data row) you can do: Private Sub ChartFX1_ChangeValue(ByVal dValue As Double, ByVal nSerie As Integer, ByVal nPoint As Long, nRes As Integer) If (nSerie = 1) Then nRes = 1 ' Discard change !! End If End Sub -- FP Software FX, Inc. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.