当鼠标在图形线或刻度点上时如何显示 LinePlot JPGraph 的值

Posted

技术标签:

【中文标题】当鼠标在图形线或刻度点上时如何显示 LinePlot JPGraph 的值【英文标题】:How to display value of LinePlot JPGraph when the mouse is over the graph line or tick point 【发布时间】:2013-04-12 09:41:50 【问题描述】:

我有一个项目要制作一个具有许多 x 轴值的图形,它不能通过显示值类中的 show() 函数显示,因为它会相互重叠。所以我只想在鼠标悬停在线或刻度点时显示图形值。有可能这样做吗?如果有可能如何做到这一点。(如果它有其他不是 JPGraph 的方式,请告诉我。) 谢谢。 :) 我不知道你是否理解我。对不起我的英语不好。

【问题讨论】:

【参考方案1】:

以下功能可能会用到您的项目。 例如

clearviewport();

用于trubo c

【讨论】:

当问题是关于 JPGraph(用 php 编写的组件)时,可能 Turbo C 不是很相关。【参考方案2】:

$lineplot->值->显示();

查看价值方法和一些选项

【讨论】:

【参考方案3】:

这是不可能的,因为 JPGraph 正在渲染平面图像,这与添加任何平面图像相同,因此无法知道鼠标悬停在哪个数据块上。

【讨论】:

【参考方案4】:

试试这个例子。 甚至可以添加到另一个页面的链接。

  require_once ('jpgraph/jpgraph.php'); // change to your libraries
  require_once ('jpgraph/jpgraph_bar.php'); // change to your libraries

 // Some random data to plot
 $datay=array(12,26,9,17,31);

 // Create the graph. 
 $graph = new Graph(400,250);
$graph->SetScale("textlin");

// Create a bar pot
$bplot = new BarPlot($datay);

// Create targets for the image maps so that the details are opened in a separate window
$fmtStr = "javascript:window.open('barcsim_details.php?id=%d','_new','width=500,height=300');void(0)";
$n = count($datay);
$targ=array();
$alts=array();
for($i=0; $i < $n; ++$i) 
    $targ[$i] = sprintf($fmtStr,$i+1);
    $alts[$i] = '%d'; 
    // Note: The format placeholder val=%d will be replaced by the actual value in the ouput html by the 
    // library so that when the user hoovers the mouse over the bar the actual numerical value of the bar 
    // will be dísplayed

$bplot->SetCSIMTargets($targ,$alts);

// Add plot to graph
$graph->Add($bplot);

// Setup the title, also wih a CSIM area
$graph->title->Set("CSIM with popup windows");
$graph->title->SetFont(FF_FONT2,FS_BOLD);
// Assume we can give more details on the graph
$graph->title->SetCSIMTarget(sprintf($fmtStr,-1),'Title for Bar'); 

// Send back the HTML page which will call this script again to retrieve the image.
$graph->StrokeCSIM();

http://fossies.org/dox/jpgraph-3.0.7/barcsim__popup_8php_source.html

【讨论】:

以上是关于当鼠标在图形线或刻度点上时如何显示 LinePlot JPGraph 的值的主要内容,如果未能解决你的问题,请参考以下文章

Google chrome:当鼠标悬停在表格单元格上时如何显示全文

当用户使用 JQuery 将鼠标悬停在链接上时如何显示图像

如何在 Chart.js v2 中格式化 x 轴时间刻度值

如何将弹出窗口添加到折线中,当鼠标悬停在地图上的折线上时显示传单

R情节,当鼠标悬停在图上时正常光标

Visual Studio 调试器在鼠标悬停时将日期时间显示为刻度,而不是可理解的日期字符串格式