-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Whether it is supported to set the Chart AxisTitles? #1553
Labels
Comments
Closed
Thanks for your issue. This issue duplicated with issues #398 and #801. I have added err := f.AddChart("Sheet1", "A1", &excelize.Chart{
// ...
XAxis: excelize.ChartAxis{
+ Title: []excelize.RichTextRun{
+ {Text: "Primary Horizontal Axis Title"},
+ },
},
YAxis: excelize.ChartAxis{
+ Title: []excelize.RichTextRun{
+ {
+ Text: "Primary Vertical Axis Title",
+ Font: &excelize.Font{
+ Color: "777777",
+ Bold: true,
+ Italic: true,
+ Size: 12,
+ },
+ },
},
},
}) |
xuri
added a commit
to JDavidVR/excelize
that referenced
this issue
Jul 11, 2023
…titles - Update unit tests and documentation - Lint issues fixed
jenbonzhang
pushed a commit
to jenbonzhang/excelize
that referenced
this issue
Oct 22, 2023
…titles - Update unit tests and documentation - Lint issues fixed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
As shown below
![Snipaste_2023-05-31_17-05-55](https://private-user-images.githubusercontent.com/77818328/242220863-1c1ec2fb-1fe5-4e9e-aa23-d7a60b7625d3.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzg5NDk0MjgsIm5iZiI6MTczODk0OTEyOCwicGF0aCI6Ii83NzgxODMyOC8yNDIyMjA4NjMtMWMxZWMyZmItMWZlNS00ZTllLWFhMjMtZDdhNjBiNzYyNWQzLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDclMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA3VDE3MjUyOFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWMxNjcwYjAyYzVkMjgwNGU0N2UxMzJiNjkzZDFhNGE4MDdmNzJiZDVlMDk5MWE2NGFhMTJiYzVmZWRhNjJmNjMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.1XB_MdOIHfi8tc-NxzgqTzGfFf-VSxBej930WJ-lNug)
The text was updated successfully, but these errors were encountered: