Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improved the Titles tab on the Graphs subdialog #8337

Merged
merged 20 commits into from Jun 2, 2023
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions instat/clsGgplotDefaults.vb
Expand Up @@ -24,6 +24,7 @@ Public Class GgplotDefaults
clsTempFunc.AddParameter("title", Chr(34) & Chr(34))
clsTempFunc.AddParameter("subtitle", Chr(34) & Chr(34))
clsTempFunc.AddParameter("caption", Chr(34) & Chr(34))

Return clsTempFunc
End Get
End Property
Expand Down Expand Up @@ -219,6 +220,9 @@ Public Class GgplotDefaults
dctTemp.Add("title", clsElementText.Clone())
dctTemp.Add("sub.title", clsElementText.Clone())
dctTemp.Add("caption", clsElementText.Clone())
dctTemp.Add("tag", clsElementText.Clone())
dctTemp.Add("colour", clsElementText.Clone())

'dctTemp.Add("aspect.ratio", clsElementText.Clone())
dctTemp.Add("axis.title", clsElementText.Clone())
dctTemp.Add("axis.title.x", clsElementText.Clone())
Expand Down Expand Up @@ -271,6 +275,7 @@ Public Class GgplotDefaults
dctTemp.Add("plot.title", clsElementText.Clone())
dctTemp.Add("plot.subtitle", clsElementText.Clone())
dctTemp.Add("plot.caption", clsElementText.Clone())
dctTemp.Add("plot.tag", clsElementText.Clone())
dctTemp.Add("plot.margin", clsUnit.Clone())
dctTemp.Add("strip.background", clsElementRect.Clone())
' dctTemp.Add("strip.placement", clsElementLine.Clone())
Expand Down