Re: Does anyone care about DFS?



DFS wrote:
CDMAPoster@xxxxxxxxxxxxxxxx wrote:

I'll try to find time this week to work on a PDF scatter chart mdb.
Any requests for features DFS? I care.

It's so nice to find people who care... sniff sniff...

But seriously, no need to burn your time unless you can't help yourself. My
hand-coded scatter chart works well for my needs:

http://www.angelfire.com/planet/dfs0/Scatter.PNG

See that datasheet on the right? As you scroll it, the current month is
highlighted in red on the chart. Kewl!

Here's the positioning code (added some height/width kludges to deal with
the labels in the corners). I may work on autoscaling (would be easy), but
the data sets have pretty tight ranges.


'X-AXIS POSITION
XPos = ((rs("X") - 0.8) / 0.2) * (0.5 * frm.scatterBox.Width)
If XPos <= 0 Then
XPos = 10
ElseIf XPos > frm.scatterBox.Width Then
XPos = frm.scatterBox.Width - 100
End If
frm("point" & i).Left = scatterLeft + XPos


'Y-AXIS POSITION
YPos = ((rs("Y") - 0.8) / 0.2) * (0.5 * frm.scatterBox.Height)
If YPos <= 0 Then
YPos = 10
ElseIf YPos > frm.scatterBox.Height Then
YPos = frm.scatterBox.Height - 300
End If
frm("point" & i).Top = scatterBottom - YPos





I'm thinking about small red circles with a black border for that
points. PDF has to use Bezier Curves for circles so I'm thinking
along these lines:

<snip nice code>


Thanks for the offer.

I think I need at least one person to request that I do the scatter
plot to justify spending time on it although it sounds fun. What you
have looks nice. I think the PDF output gives more flexibility
although being able to show a scrollable view of the data next to the
plot is very nice. I'd end up going into the graphics API to retain
the kind of flexibility I like in order to have that feature. The API
calls can handle the red month also, but I agree that it's a nice touch
either way. I'm glad it worked out for you.

James A. Fortune
CDMAPoster@xxxxxxxxxxxxxxxx

.



Relevant Pages

  • Re: IE Runtime Error -- application terminating in an unusual way
    ... Requests for assistance by email can not and will not be acknowledged. ... The error message is ... > I get the same message now when trying to open My Music Folder (that's a new ... I don't care that much about ie, but I do care about being unable to ...
    (microsoft.public.windowsxp.general)
  • Re: Verbose functional languages?
    ... To attract a community, it's essential that somebody listens, and ... understands the needs behind the requests. ... Perhaps you could volunteer to take care of ...
    (comp.lang.functional)
  • Re: Anyone interested in Pictures of an IPB Funhouse PF?
    ... I've gotten a few requests and I'll put them up tomorrow. ... do you care if the Diamond Plate Logo is there or not? ... them to Photobucket tomorrow. ...
    (rec.games.pinball)
  • Re: [GIT PULL] Ext3 latency fixes
    ... request handling doesn't care AT ALL about the priority. ... Allocating ... write requests, we'll have to wait for the background writes to free ... In addition to setting kjournald to higher priority, ...
    (Linux-Kernel)