IgbLegendの凡例項目は通常シリーズコレクションに追加された順に表示されますが、cssを使用して順序を逆にすることができます。
<IgbLegend Orientation="LegendOrientation.Horizontal"
id="testLegend1"
...>
</IgbLegend>
#testLegend1 .ig-chart-legend-items-list {
display: flex;
flex-direction: row-reverse;
justify-content:flex-end;
}
