CPF/CPF.ReoGrid/Chart/ColumnLineChartLegend.cs
2024-06-24 10:15:59 +08:00

20 lines
334 B
C#

using System;
using CPF.Drawing;
namespace CPF.ReoGrid.Chart
{
public class ColumnLineChartLegend : ChartLegend
{
internal ColumnLineChartLegend(IChart chart) : base(chart)
{
}
protected override Size GetSymbolSize(int index)
{
float num = 12f;
float num2 = 12f;
return new Size(ref num, ref num2);
}
}
}