19 lines
414 B
C#
19 lines
414 B
C#
|
using Components.Nonvisual;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Components.SaveToPdfHelpers
|
|||
|
{
|
|||
|
internal class PdfChartParameters
|
|||
|
{
|
|||
|
public Dictionary<string, int[]> Data = new();
|
|||
|
|
|||
|
public string Title = string.Empty;
|
|||
|
|
|||
|
public LegendAlignment LegendAlignment = LegendAlignment.Bottom;
|
|||
|
}
|
|||
|
}
|