I'm drawing elevation profiles showing the elevation gain/loss along a trail, similar to the one below:

This is basically a line graph with distance from the start on the x-axis and elevation on the y-axis.
I'd like to provide fancy labels with spot elevations at interesting points along the trail, like the ones I have added by hand to the sample image. I'm looking for ideas on how best to place these labels so that:
- They don't overlap with each other
- They don't overlap with the profile itself, or at least this happens in a clean-looking way (seems it might be necessary in the middle of a steep valley, for example)
- They don't extend outside the box that limits the overall image
To achieve these objectives, I figure I can (at least):
- Flip the text around (see example)
- Choose appropriate lengths for leaders
- Choose appropriate angles for leaders (but minimizing the variation might be desirable for aesthetic reasons)
- Drop spot elevations for less-important places in crowded areas
- Abbreviate names in crowded areas (
PlaceNames in my environment already support abbreviation in a really nice way, so switching from "South Twin Mountain" to "S Twin Mtn" is easy) - Drop less-important annotations entirely in crowded areas
But I don't know how best to structure this algorithm. It seems like an optimization problem maybe? (Minimize the stinkiness associated with the annotation, and provide a numerical penalty for each of the things I'm trying to avoid?) But since there are a lot of discrete variables to optimize and I don't really care about the "best" solution (just a good, and preferably stable, one) I'm not sure what to do.
How are problems like this in graphics usually approached? Dynamic programming? Branch and bound? Is the optimization idea off base? Are there any useful libraries for .NET that I might want to look at?
(I don't want to cede this to a general graph-drawing library outright, because it is a key feature of the overall product and I have some more custom features planned that might be tough to jam into a general purpose graph-drawing library)
