]> git.saurik.com Git - wxWidgets.git/blobdiff - contrib/samples/plot/plot.cpp
Adds a title to the chart, patch 1242262 Matthew D.P.
[wxWidgets.git] / contrib / samples / plot / plot.cpp
index df1f5b9a546196def9750e909028c31164ef04fc..6ebbd6c60e3d8f5a50865e201a38d4a574a50e7f 100644 (file)
@@ -129,6 +129,13 @@ MyFrame::MyFrame()
     m_plot->SetUnitsPerValue( 0.01 );
 //    m_plot->SetScrollOnThumbRelease( true );
 
+    //Add a blue, 16pt chart title
+    wxString titleText( _T("The Chart Title") );
+    wxFont titleFont( *wxNORMAL_FONT );
+    titleFont.SetPointSize( 16 );
+    wxColour titleColour( *wxBLUE );
+    m_plot->AddChartTitle( titleText, titleFont, titleColour );
+
     m_plot->Add( new MyPlotCurve( 0,  -1.5, 1.5 ) );
     m_plot->Add( new MyPlotCurve( 50, -1.5, 1.5 ) );
     wxPlotOnOffCurve *oo = new wxPlotOnOffCurve( 10 );