User (Legacy) Posted March 1, 2002 Report Share Posted March 1, 2002 Is it possible to create a two line title? For instance: Chart Title (Chart SubTitle) Brian Beaudet Quote Link to comment Share on other sites More sharing options...
User (Legacy) Posted March 2, 2002 Author Report Share Posted March 2, 2002 Hi Brian, Yes you can.....like this for example: ChartFX1.Title(CHART_TOPTIT) = "Chart Title" & vbCrLf & "(Chart SubTitle)" or in complete code: Private Sub Form_Load() Dim strText As String strText = "Chart Title" & vbCrLf & "(Chart SubTitle)" With ChartFX1 .Title(CHART_TOPTIT) = strText End With End Sub Good luck, Arnoud "B Squared" <bbeaudet@b2webapps.com> wrote in message news:uz5vkHXwBHA.1412@webserver1.softwarefx.com... > Is it possible to create a two line title? > > For instance: > > Chart Title > (Chart SubTitle) > > Brian Beaudet > > Quote Link to comment Share on other sites More sharing options...
User (Legacy) Posted March 4, 2002 Author Report Share Posted March 4, 2002 Perfect. Thanks. "Arnoud Kettenis" <arnoudk@hetnet.nl> wrote in message news:gb6P6bjwBHA.1412@webserver1.softwarefx.com... Hi Brian, Yes you can.....like this for example: ChartFX1.Title(CHART_TOPTIT) = "Chart Title" & vbCrLf & "(Chart SubTitle)" or in complete code: Private Sub Form_Load() Dim strText As String strText = "Chart Title" & vbCrLf & "(Chart SubTitle)" With ChartFX1 .Title(CHART_TOPTIT) = strText End With End Sub Good luck, Arnoud "B Squared" <bbeaudet@b2webapps.com> wrote in message news:uz5vkHXwBHA.1412@webserver1.softwarefx.com... > Is it possible to create a two line title? > > For instance: > > Chart Title > (Chart SubTitle) > > Brian Beaudet > > Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.