仅适用于那些将寻求相同问题答案的人。
AnyChart 允许对图表元素应用不同的样式。要执行 OP 想要的操作,您需要在自定义 XML 中定义样式并将它们分配给系列。例如,这是 XML:
<?xml version="1.0" encoding="UTF-8"?>
<anychart>
<charts>
<chart plot_type="CategorizedVertical">
<styles>
<line_style name="style1">
<line enabled="True" thickness="4" color="Rgb(86,86,26)" />
<effects>
<bevel enabled="true" highlight_opacity="0.4" shadow_opacity="0.4" distance="2" />
<drop_shadow enabled="true" opacity="0.3" />
</effects>
<states>
<hover>
<border color="DarkRed" thickness="6" />
</hover>
</states>
</line_style>
<line_style name="style2" parent="style1">
<line color="Rgb(180,180,255)" />
</line_style>
<line_style name="style3" parent="style1">
<line color="Rgb(255,170,170)" dashed="True" dash_length="5" space_length="5" />
</line_style>
</styles>
<data_plot_settings default_series_type="Line">
<line_series>
<marker_settings enabled="false" />
</line_series>
</data_plot_settings>
<!--#DATA#-->
&PAGE_ITEM_WITH_CHART_DATA.
<chart_settings>
<title enabled="false" />
<axes>
<y_axis>
<title>
<text>Salary</text>
</title>
</y_axis>
<x_axis>
<title>
<text>Month</text>
</title>
</x_axis>
</axes>
</chart_settings>
</chart>
</charts>
</anychart>
隐藏PAGE_ITEM_WITH_CHART_DATA
项应包含所有图表数据系列。该styles
元素定义了与图表部分一起使用的不同样式。我们可以将其中一个分配给整个系列,如下所示:
<data>
<series name="2003 Sales" style="style1">
<point name="January" y="12000" />
<point name="February" y="15000" />
<point name="March" y="16000" />
<point name="April" y="15000" />
<point name="May" y="14000" />
</series>
...
</data>
或者我们可以只为一个点指定一个样式:
<data>
...
<series name="2004 Sales" style="style2">
<point name="January" y="10000" />
<point name="February" y="12000" />
<point name="March" y="18000" style="style3" />
<point name="April" y="11000" />
<point name="May" y="9000" />
</series>
<data>
您可以在此处找到带有 XML 代码的示例。