You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWATI/Include/iPlot/iPlotBase/Helper/ZxAxisHelperStr.h

26 lines
441 B
C++

#pragma once
#include "ZxAxisHelper.h"
// 字符串类
class I_PLOTBASE_EXPORT ZxAxisHelperStr : public ZxAxisHelper
{
Q_OBJECT
public:
explicit ZxAxisHelperStr(ZxSubAxisBase* p);
~ZxAxisHelperStr();
protected:
// 绘制函数
virtual void drawTickAndTags(QPainter* painter, QRectF& rt);
// 取得待显示的刻度文本标识
virtual QMap<double, QString> getTickInfos();
public slots:
protected:
};