我正在使用来自 Dot Net High Chart 的堆叠条形图,我想使用CSS将条形图框更改为三角形,我在 Formatter 中尝试过,但它不起作用。我正在使用 ASP.NET 和 c#,我可以在哪里使用 CSS?还有其他方法吗?
这是我的图表代码
.SetPlotOptions(new PlotOptions
{
Bar = new PlotOptionsBar
{
Stacking = Stackings.Percent,
BorderWidth = 2,
BorderColor = System.Drawing.Color.Coral,
Shadow = true,
DataLabels = new PlotOptionsBarDataLabels
{
Enabled = true,
Formatter = "function() { return this.series.name; }",
Color = System.Drawing.Color.Black,
Style = "fontSize: '13px', fontFamily: 'Verdana', fontBold: 'true', color: 'Black'"
},
PointWidth = 35,
Point = new PlotOptionsBarPoint { },
}
})