11 lines
153 B
C#
11 lines
153 B
C#
using System;
|
|
using CPF.ReoGrid.Data;
|
|
|
|
namespace CPF.ReoGrid.Chart
|
|
{
|
|
public interface IChartDataSerial : IDataSerial
|
|
{
|
|
string Label { get; }
|
|
}
|
|
}
|