Problem with drawing graphs

  • Thread starter Thread starter vidhya
  • Start date Start date
V

vidhya

I have a database of 10000 values which i have plotted in excel
(graph)

is there any way where i can find a particular point in the graph?

say i need point x1,y1...is there a way to find it directly in the
graph rather than going and searching for it in the graph???


Thanks.
 
Sub IncreaseMarkerSize()
With ActiveChart.SeriesCollection(1).Points(5)
.MarkerSize = .MarkerSize + 1
End With
End Sub


You will need to add code to allow the user to indicate which
data item you want. You will need to change what is done to that
data point too - I am increasing the marker size of the selected point.
You may want to specify which series is being used too.

Chrissy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Drawing a Circle 2
Multiscaling the same graph 1
Excel Log Log Graph on Excel 0
VB and graphs 1
Graphing Negative Time 1
special graph format 3
Copy and Paste Graphs? 4
Scatter Plot Question - adding straight lines 0

Back
Top