Boost logo

Boost-Commit :

From: pbristow_at_[hidden]
Date: 2008-05-24 12:37:38


Author: pbristow
Date: 2008-05-24 12:37:38 EDT (Sat, 24 May 2008)
New Revision: 45727
URL: http://svn.boost.org/trac/boost/changeset/45727

Log:
A start on getting docs back up to program, but much work needed still.
Text files modified:
   sandbox/SOC/2007/visualization/libs/svg_plot/doc/1d_full_tutorial.qbk | 7 +++++--
   1 files changed, 5 insertions(+), 2 deletions(-)

Modified: sandbox/SOC/2007/visualization/libs/svg_plot/doc/1d_full_tutorial.qbk
==============================================================================
--- sandbox/SOC/2007/visualization/libs/svg_plot/doc/1d_full_tutorial.qbk (original)
+++ sandbox/SOC/2007/visualization/libs/svg_plot/doc/1d_full_tutorial.qbk 2008-05-24 12:37:38 EDT (Sat, 24 May 2008)
@@ -54,12 +54,15 @@
     // Text settings.
     my_plot.title("Oh My!")
            .title_font_size(29)
- .x_label("Time in Months");
+ .x_label("Time in Months") // X- axis label
+ .x_label_on(true); // Not needed, because although the default is no axis label,
+ // providing a label has this effect.
+ // If we want later to switch *off* labels,
+ // my_plot.x_label_on(false); // is needed.
     
     // Commands.
     my_plot.legend_on(true)
            .plot_window_on(true)
- .x_label_on(true)
            .x_major_labels_on(true);
     
     // Color settings.


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk