This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#pragma once
#include "iXmlBaseItem.h"
#include "mSysUtilsPF_global.h"
// 标题、图例等基础的定义,类名未用base,以避免歧义
class M_SYSUTILS_PF_EXPORT iDefineChartTitle : public iXmlBaseItem
{
public:
iDefineChartTitle();
~iDefineChartTitle();
// 把List分配到成员变量
// 输入开始的m_listValues中index,并且返回下一个index
virtual int allocateInfo(int nIndex);
protected:
virtual void initXmlTags();
QString m_sTitle; //标题
bool m_bLegendVisible; //图例是否显示
};