关注的代码:http://jsfiddle.net/h6qrbpwo/10/
$(function() {
var chart;
var d = 1;
var index = 0;
function getYValue(chartObj, seriesIndex, xValue) {
var yValue = null;
var points = chartObj.series[seriesIndex].points;
for (var i = 0; i < points.length; i++) {
if(i == points.length - 1 && points[i].x != xValue){
return 0;
}
yValue = points[i].y;
}
return yValue;
}
$('#b').click(function() {
console.log(index);
var d = getYValue(chart, index, 20.5);
console.log(d);
d++;
console.log(d);
chart.addSeries({
grouping: false,
data: [
[20.5, d]
]
});
index …Run Code Online (Sandbox Code Playgroud) 根据https://neo4j-contrib.github.io/neo4j-apoc-procedures/,只需要从http://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/下载二进制jar. 3.1.0.3放入文件夹"Neo4j CE 3.1.1\plugins".
我这样做了.但是,我无法从http:// localhost:7474/browser /调用"call apoc.help("apoc")" .
根据这个网站。
我认为这应该有效:
Dim cell As Range
For Each cell In xxxSheet.Range("B:B").SpecialCells(xlCellTypeFormulas, xlNumbers)
'Do sth.
Next
Run Code Online (Sandbox Code Playgroud)
这不起作用。有什么遗漏吗?
例如,这套是:
{'abc', '123', 'efg', 'er23'}
Run Code Online (Sandbox Code Playgroud)
我想摆脱集合中的'123'.它会在python中成为可能吗?