-
-
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
Complex chart style: line width #505
Comments
What complex styles do you need, please list them if possible, and I will consider adding support for them. A method for generating a new file based on a template: Create a chart template using Excel Application, open the template file with this lib, and modify the data area referenced by the chart to save it as a new file. |
Hi @byteman, I have added support for the set line width of the line chart. Set the width by the specified f.AddChart("Sheet2", "X16", `{
"type": "line",
"series": [
{
"name": "Sheet1!$A$37",
"categories": "Sheet1!$B$29:$D$29",
"values": "Sheet1!$B$37:$D$37",
"line":
{
"width": 0.25
}
}]
}`) |
i love you so much!!!! |
我再在用go生成一个2D折线图的时候,只有很简单的图表样式可以操作,有什么办法可以生成比较复杂的图表样式吗?或者可以先在excel中设置好样式,然后用go读取出来样式,然后生成在我自己的程序中吗??
The text was updated successfully, but these errors were encountered: