20 lines
319 B
C#
20 lines
319 B
C#
using System;
|
|
using CPF.Drawing;
|
|
|
|
namespace CPF.ReoGrid.Chart
|
|
{
|
|
public class LineChartLegend : ChartLegend
|
|
{
|
|
public LineChartLegend(IChart chart) : base(chart)
|
|
{
|
|
}
|
|
|
|
protected override Size GetSymbolSize(int index)
|
|
{
|
|
float num = 25f;
|
|
float num2 = 3f;
|
|
return new Size(ref num, ref num2);
|
|
}
|
|
}
|
|
}
|