XCustomPlot icon indicating copy to clipboard operation
XCustomPlot copied to clipboard

ytracer的visible没加上

Open zhangxingjing opened this issue 4 years ago • 0 comments

void showTracer(bool show)
    {
        m_isShowTracer = show;
        if(m_xTracer)
            m_xTracer->setVisible(m_isShowTracer);

        //////////////
	if(m_yTracer)
            m_yTracer->setVisible(m_isShowTracer);
        /////////////

        foreach (XxwTracer *tracer, m_dataTracers)
        {
            if(tracer)
                tracer->setVisible(m_isShowTracer);
        }
        if(m_lineTracer)
            m_lineTracer->setVisible(m_isShowTracer);
    }

zhangxingjing avatar Nov 10 '21 08:11 zhangxingjing