4

我正在使用 Carlos Aguilera 的WebChart控件,并希望更改图例标记以匹配我在线上使用的线标记。我有以下图表:

从 webchart 生成的图像

这是我的图例代码:

  objLegend = New WebChart.ChartLegend
  objLegend.Font = New Font("Verdana", 8)
  objLegend.Width = 150
  objLegend.Position = LegendPosition.Right
  objLegend.Background.Color = Color.LightYellow
  objLegend.Background.Type = InteriorType.Solid
  objLegend.Background.WrapMode = Drawing2D.WrapMode.Tile

  objEngine.Legend = objLegend

以及设置线标记的代码

 Select Case intColorIndex Mod 5

        Case 0
             objLineChart.LineMarker = New CircleLineMarker(6, Color.Red, Color.Black)

        Case 1
             objLineChart.LineMarker = New DiamondLineMarker(6, Color.Red, Color.Black)
        Case 2
             objLineChart.LineMarker = New SquareLineMarker(6, Color.Red, Color.Black)
        Case 3
             objLineChart.LineMarker = New TriangleLineMarker(6, Color.Red, Color.Black)
        Case 4
             objLineChart.LineMarker = New XLineMarker(6, Color.Red, Color.Black)

      End Select

这些地方似乎都没有设置图例标记类型的属性,并且对象中似乎也没有选项ChartEngine

图例文本是每行设置的,但唯一可访问的属性LineChart是文本,似乎没有符号选项。

是否可以使用此控件更改图例标记?如果是这样,我该怎么做?

4

1 回答 1

2

http://www.carlosag.net/tools/webchart/sample-pie-chart上,图例符号看起来像是在标记中设置的:

<web:chartcontrol> 
    ...
    <legend width="110" font="Tahoma, 6.75pt">
        <border endcap="Flat" dashstyle="Solid" 
            startcap="Flat" color="Black" width="1" 
            linejoin="Miter"></border>
        <background type="Solid" startpoint="0, 0" 
            forecolor="Black" endpoint="0, 100" color="White"
            hatchstyle="Horizontal"></background>
    </legend>
</web:chartcontrol>

您可以尝试通过操作<legend>内部元素来设置图例符号<web:chartcontrol>

于 2013-08-16T16:44:05.367 回答