同じ質問に対する答えを求める人向けです。
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
要素は、チャートのパーツで使用するさまざまなスタイルを定義します。次のように、そのうちの 1 つをシリーズ全体に割り当てることができます。
<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>
または、スタイルを 1 点だけに割り当てることもできます。
<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 コードの例を見つけることができます。