Dot Net High Chart の Stacked Bar chart を使用しています。CSSを使用して Box of bar chart を Triangle に変更したいのですが、Formatter で試しましたが、うまくいきません。私は CSS を使用できる ASP.NET と c# を使用していますか?? それを行う他の方法はありますか??
これが私のチャートのコードです
.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 { },
}
})