Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/grails/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 使用HTML表格中的数据在Highcharts中的Y轴上绘制FOMATT标签_Javascript_Highcharts - Fatal编程技术网

Javascript 使用HTML表格中的数据在Highcharts中的Y轴上绘制FOMATT标签

Javascript 使用HTML表格中的数据在Highcharts中的Y轴上绘制FOMATT标签,javascript,highcharts,Javascript,Highcharts,拜托,我被困在这里试图在高图中设置Y轴的格式,所以它表示货币符号,但主要是,我需要显示单位缩写。这是我的Html和javascript。它从HTML表中获取数据。 HTML: 您可以在yAxis标签中使用格式化程序:非常感谢!我已经在某个点上安定下来了…似乎我真的无法得到我所需要的。Highcharts很酷,但HTML表到图功能在配置和定制方面似乎有很多障碍。 <!DOCTYPE html> <html> <head> <title>Test<

拜托,我被困在这里试图在高图中设置Y轴的格式,所以它表示货币符号,但主要是,我需要显示单位缩写。这是我的Html和javascript。它从HTML表中获取数据。 HTML:


您可以在yAxis标签中使用格式化程序:

非常感谢!我已经在某个点上安定下来了…似乎我真的无法得到我所需要的。Highcharts很酷,但HTML表到图功能在配置和定制方面似乎有很多障碍。
<!DOCTYPE html>
<html>
<head>
<title>Test</title>
<script src="jquery-1.9.0.min.js"></script>
<script src="highcharts.src.js"></script>
<script src="jquery.highchartTable.js"></script>
<script>
$(document).ready(function() {
$('table.highchart').highchartTable();
});
</script>

</head>
<body>


<table class="table table-bordered table-condensed table-striped table-primary table-vertical-center checkboxs highchart" data-graph-container-before="1" data-graph-type="column" data-graph-yaxis-1-formatter-callback="graph_ValueFormatter" data-graph-height="350">
                                                                  <thead>
                                                     <tr>
                                                        <th data-graph-hidden="1">Location</th>
                                                        <th class="center" style="width: 100px;">Sales</th>
                                                        <th class="center" style="width: 100px;">Pipeline</th>
                                                        <th class="center" style="width: 100px;">Projected</th>
                                                   </tr>
                                                 </thead>
                                                                  <tbody> 
                                                  <!-- Item -->
                                                  <tr class="selectable">
                                                     <td><strong>Africa Re, VI Lagos</strong></td>
                                                     <td class="center">31,977</td>
                                                     <td class="center">1,230</td>
                                                     <td class="center">31,977</td>
                                                  </tr>
                                                  <!-- // Item END -->
                                                  <!-- Item -->
                                                  <tr class="selectable">
                                                     <td><strong>Muliner Towers, Ikoyi Lagos</strong></td>
                                                     <td class="center">28,756</td>
                                                     <td class="center">1,079</td>
                                                     <td class="center">28,835</td>
                                                  </tr>
                                                  <!-- // Item END -->
                                                  <!-- Item -->
                                                  <tr class="selectable">
                                                     <td><strong>Somewhere, London</strong></td>
                                                     <td class="center">13,328</td>
                                                     <td class="center">1,833</td>
                                                     <td class="center">14,161</td>
                                                  </tr>
                                                  <!-- // Item END -->
                                                  <!-- Item -->
                                                  <tr class="selectable">
                                                     <td><strong>Somewhere, Johanesburg</strong></td>
                                                     <td class="center">38,893</td>
                                                     <td class="center">3,430</td>
                                                     <td class="center">38,893</td>
                                                  </tr>
                                                  <!-- // Item END -->
                                                  <!-- Item -->
                                                  <tr class="selectable">
                                                     <td><strong>Someplace, Nairobi</strong></td>
                                                     <td class="center">241,178</td>
                                                     <td class="center">2,247</td>
                                                     <td class="center">243,425</td>
                                                  </tr>
                                                  <!-- // Item END -->



                                            </tbody>
                                                               </table>
 </body>
  </html>![enter image description here][1]