增加PolarChartclockwise是否顺时针支持

This commit is contained in:
monitor1394
2020-07-02 07:31:32 +08:00
parent ed6939148e
commit 2d9402a417
5 changed files with 32 additions and 20 deletions

View File

@@ -120,6 +120,7 @@ namespace XCharts
else
{
value = (minValue + (maxValue - minValue) * index / (split - 1));
if (!axis.clockwise && value != minValue) value = maxValue - value;
}
if (axis.inverse)
{