第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

圖表:PixelPositionToValue 在查找 x、y 坐標(biāo)時(shí)不準(zhǔn)確

圖表:PixelPositionToValue 在查找 x、y 坐標(biāo)時(shí)不準(zhǔn)確

C#
楊__羊羊 2023-05-13 16:02:54
我試圖在一個(gè)小顯示器中顯示圖表數(shù)據(jù)的 X 和 Y 坐標(biāo)。一切正常,但顯示的數(shù)據(jù)不準(zhǔn)確。這是下面的代碼: var results = chart1.HitTest(e.X, e.Y, false, ChartElementType.PlottingArea);            foreach (var result in results)            {                if (result.ChartElementType == ChartElementType.PlottingArea)                {                    yValue = chart1.ChartAreas[0].AxisY2.PixelPositionToValue(e.Y);                    xValue = chart1.ChartAreas[0].AxisX2.PixelPositionToValue(e.X);                }            }            if (OverlapcheckBox1.Checked)            {                int val = Convert.ToInt16(yValue / 24);                yValue = yValue - 24 * val;            }            if (Cursor1checkBox.Checked && ClickMouse)            {                V1textBox1.Text = string.Concat(string.Concat(yValue).ToString());            }            if (Cursor2checkBox.Checked && ClickMouse)            {                V2textBox2.Text = string.Concat(string.Concat(yValue).ToString());            }該圖像顯示光標(biāo)位于 10,但 V1 中的值為 9.88 和圖像:圖像
查看完整描述

1 回答

?
jeck貓

TA貢獻(xiàn)1909條經(jīng)驗(yàn) 獲得超7個(gè)贊

除非您的鼠標(biāo)具有驚人的準(zhǔn)確性,否則您永遠(yuǎn)不會看到精確的 10.000。你可以四舍五入:


private void Chart1_MouseClick(object sender, MouseEventArgs e) {

    double yValue = chart1.ChartAreas[0].AxisY.PixelPositionToValue(e.Y);

    yValue = Math.Round(yValue, 0);

}

或者您希望在光標(biāo)點(diǎn)擊位置附近找到數(shù)據(jù)點(diǎn)?


private void Chart1_MouseClick(object sender, MouseEventArgs e) {


    HitTestResult result = chart1.HitTest(e.X, e.Y);


    if (result.ChartElementType == ChartElementType.DataPoint) {

        DataPoint point = (DataPoint)result.Object;

        double yValue = point.YValues[0];

    }

}


查看完整回答
反對 回復(fù) 2023-05-13
  • 1 回答
  • 0 關(guān)注
  • 402 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號