using System.Drawing; using Core.Components.Charting.Data; using Core.Plugins.OxyPlot.Properties; namespace Core.Plugins.OxyPlot.Legend { /// /// This class describes the presentation of as a tree node. /// public class LineDataNodePresenter : ChartDataNodePresenter { protected override string Text { get { return Resources.ChartDataNodePresenter_Line_data_label; } } protected override Bitmap Icon { get { return Resources.LineIcon; } } } }