using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace APT.BaseData.Domain.Enums
{
public enum PFChartTypeEnum
{
///
/// 折线图
///
line = 0,
///
/// 柱状图
///
bar = 1,
///
/// 饼图
///
pie = 2,
///
/// 桑基图
///
sankey = 3,
///
/// 雷达图
///
radar = 4,
///
/// 散点图
///
scatter = 5
}
}