本文整理汇总了C++中CChartAxis::SetVisible方法的典型用法代码示例。如果您正苦于以下问题:C++ CChartAxis::SetVisible方法的具体用法?C++ CChartAxis::SetVisible怎么用?C++ CChartAxis::SetVisible使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CChartAxis
的用法示例。
在下文中一共展示了CChartAxis::SetVisible方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: RGB
CChartCtrl::CChartCtrl()
{
RegisterWindowClass();
m_BorderColor = RGB(0,0,0);
BackColor = GetSysColor(COLOR_BTNFACE);
EdgeType = EDGE_RAISED;
CChartAxis* pBottom = new CChartAxis(this,true);
CChartAxis* pLeft = new CChartAxis(this,false);
CChartAxis* pTop = new CChartAxis(this,true);
pTop->SetVisible(false);
pTop->SetSecondary(true);
CChartAxis* pRight = new CChartAxis(this,false);
pRight->SetVisible(false);
pRight->SetSecondary(true);
m_pAxisList.push_back(pBottom);
m_pAxisList.push_back(pLeft);
m_pAxisList.push_back(pTop);
m_pAxisList.push_back(pRight);
m_pLegend = new CChartLegend(this);
m_pTitles = new CChartTitle(this);
m_bMemDCCreated = false;
m_bPanEnabled = true;
m_bRMouseDown = false;
m_bZoomEnabled = true;
m_bLMouseDown = false;
}
示例2: OnBnClickedAxisvisibleCheck
void CRegisterValueAnalyzerDlg::OnBnClickedAxisvisibleCheck()
{
CChartAxis* pAxis = GetSelectedAxis();
if ( ((CButton*)GetDlgItem(IDC_AXISVISIBLE_CHECK))->GetCheck() == 1)
pAxis->SetVisible(true);
else
pAxis->SetVisible(false);
m_ChartCtrl.RefreshCtrl();
}