Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add flot plugin Candlestick with dependent library #10955

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions public/app/features/plugins/plugin_loader.ts
Expand Up @@ -111,6 +111,7 @@ import 'vendor/flot/jquery.flot.stackpercent';
import 'vendor/flot/jquery.flot.fillbelow';
import 'vendor/flot/jquery.flot.crosshair';
import 'vendor/flot/jquery.flot.dashes';
import 'vendor/flot/jquery.flot.candlestick';

const flotDeps = [
'jquery.flot',
Expand All @@ -122,6 +123,7 @@ const flotDeps = [
'jquery.flot.selection',
'jquery.flot.stackpercent',
'jquery.flot.events',
'jquery.flot.candlestick',
];
for (let flotDep of flotDeps) {
exposeToPlugin(flotDep, { fakeDep: 1 });
Expand Down
230 changes: 230 additions & 0 deletions public/vendor/flot/jquery.flot.candlestick.js
@@ -0,0 +1,230 @@
/*
* The MIT License

Copyright (c) 2010, 2011, 2012, 2013 by Juergen Marsch

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

(function ($) {
"use strict";
var pluginName = "candlestick", pluginVersion = "0.3";
var options = {
series: {
candlestick: {
active: false,
show: false,
rangeWidth: 4,
rangeColor: "rgb(0,128,128)",
upColor: "rgb(255,0,0)",
downColor: "rgb(0,255,0)",
neutralColor: "rgb(0,0,0)",
lineWidth: "8px",
highlight: { opacity: 0.5 },
drawCandlestick: drawCandlestickDefault
}
}
};
var replaceOptions = {
series:{
lines: { show:false }
},
legend:{show:false}
};
function drawCandlestickDefault(ctx,serie,data,hover){
if(hover === true){
var c = "rgba(255,255,255," + serie.candlestick.highlight.opacity + ")";
drawHover(ctx,serie,data,c);
}
else{
drawRange(ctx,serie,data);
drawBody(ctx,serie,data);
}
function drawRange(ctx,serie,data){
var x,y1,y2;
x = serie.xaxis.p2c(data[0]);
y1 = serie.yaxis.p2c(data[3]);
y2 = serie.yaxis.p2c(data[4]);
ctx.lineWidth = serie.candlestick.rangeWidth;
ctx.beginPath();
ctx.strokeStyle = serie.candlestick.rangeColor;
ctx.moveTo(x,y1);
ctx.lineTo(x,y2);
ctx.stroke();
}
function drawBody(ctx,serie,data){
var x,y1,y2,c;
x = serie.xaxis.p2c(data[0]);
y1 = serie.yaxis.p2c(data[1]);
y2 = serie.yaxis.p2c(data[2]);
if(data[1] > data[2]){ c = serie.candlestick.upColor;} else{ c = serie.candlestick.downColor;}
if(data[1] == data[2]){
c = serie.candlestick.neutralColor;
y2 = y1 + 2;
}
ctx.beginPath();
ctx.strokeStyle = c;
ctx.lineWidth = serie.candlestick.barWidth;
ctx.moveTo(x,y1);
ctx.lineTo(x,y2);
ctx.stroke();
}
function drawHover(ctx,serie,data,c){
var x,y1,y2;
x = serie.xaxis.p2c(data[0] - serie.candlestick.barWidth / 2);
y1 = serie.yaxis.p2c(data[3]);
y2 = serie.yaxis.p2c(data[4]);
ctx.beginPath();
ctx.strokeStyle = c;
ctx.lineWidth = serie.candlestick.barWidth;
ctx.moveTo(x,y1);
ctx.lineTo(x,y2);
ctx.stroke();
}
}
function init(plot) {
var offset = null, opt = null, series = null;
plot.hooks.processOptions.push(processOptions);
function processOptions(plot,options){
if (options.series.candlestick.active){
$.extend(true,options,replaceOptions);
opt = options;
plot.hooks.processRawData.push(processRawData);
plot.hooks.drawSeries.push(drawSeries);
}
}
function processRawData(plot,s,data,datapoints){
if(s.candlestick.show === true){
s.nearBy.findItem = findNearbyItemCandlestick;
s.nearBy.drawHover = drawHoverCandlestick;
}
}
function drawSeries(plot, ctx, serie){
var data;
if(serie.candlestick.show === true){
if(typeof(serie.candlestick.lineWidth) === 'string'){
serie.candlestick.barWidth = parseInt(serie.candlestick.lineWidth,0);
serie.nearBy.width = serie.candlestick.barWidth;
}
else {
var dp = serie.xaxis.p2c(serie.xaxis.min + serie.candlestick.lineWidth) - serie.xaxis.p2c(serie.xaxis.min);
serie.candlestick.barWidth = dp;
serie.nearBy.width = serie.candlestick.lineWidth;
}
offset = plot.getPlotOffset();
ctx.save();
ctx.translate(offset.left,offset.top);
for(var i = 0; i < serie.data.length; i++){
data = serie.data[i];
if(data[0] < serie.xaxis.min || data[0] > serie.xaxis.max) continue;
if(data[3] < serie.yaxis.min || data[3] > serie.yaxis.max) continue;
if(data[4] < serie.yaxis.min || data[4] > serie.yaxis.max) continue;
serie.candlestick.drawCandlestick(ctx,serie,data,false);
}
ctx.restore();
}
}
function findNearbyItemCandlestick(mouseX, mouseY,i,serie){
var item = null;
if(serie.candlestick.show===true){
if(opt.series.justEditing){
if(opt.series.justEditing[1].seriesIndex === i){ item = findNearbyItemEdit(mouseX,mouseY,i,serie); }
}
else{
if(opt.grid.editable){ item = findNearbyItemForEdit(mouseX,mouseY,i,serie);}
else{ item = findNearbyItem(mouseX,mouseY,i,serie);}
}
}
return item;
function findNearbyItemEdit(mouseX,mouseY,i,serie){
var item = null;
var j = opt.series.justEditing[1].dataIndex;
if(j.length){ item = [i,j]; }else{ item = [i,j]; }
return item;
}
function findNearbyItemForEdit(mouseX,mouseY,i,serie){
var item = null;
if(serie.candlestick.show === true){
for(var j = 0; j < serie.data.length; j++){
var x,y1,y2,y3,y4,dataitem;
dataitem = serie.data[j];
x = serie.xaxis.p2c(dataitem[0]) - serie.candlestick.barWidth / 2;
y1 = serie.yaxis.p2c(dataitem[1]) - serie.candlestick.rangeWidth / 2;
y2 = serie.yaxis.p2c(dataitem[2]) - serie.candlestick.rangeWidth / 2;
y3 = serie.yaxis.p2c(dataitem[3]) - serie.candlestick.rangeWidth / 2;
y4 = serie.yaxis.p2c(dataitem[4]) - serie.candlestick.rangeWidth / 2;
if(between(mouseX,x,(x+serie.candlestick.barWidth))){
if(between(mouseY,y3,y4)){ item = [i,j]; serie.editMode = 'x'; serie.nearBy.findMode = 'horizontal';}
if(between(mouseY,y1,(y1 + serie.candlestick.rangeWidth))) { item = [i,[j,1]]; serie.editMode='y'; serie.nearBy.findMode = 'vertical';}
if(between(mouseY,y2,(y2 + serie.candlestick.rangeWidth))) { item = [i,[j,2]]; serie.editMode='y';serie.nearBy.findMode = 'vertical';}
if(between(mouseY,y3,(y3 + serie.candlestick.rangeWidth))){ item = [i,[j,3]]; serie.editMode='y'; serie.nearBy.findMode = 'vertical';}
if(between(mouseY,y4,(y4 + serie.candlestick.rangeWidth))){ item = [i,[j,4]]; serie.editMode='y';serie.nearBy.findMode = 'vertical';}
}
}
}
return item;
}
function findNearbyItem(mouseX,mouseY,i,serie){
var item = null;
for(var j = 0; j < serie.data.length; j++){
var x,y1,y2,dataitem;
dataitem = serie.data[j];
x = serie.xaxis.p2c(dataitem[0]) - serie.candlestick.barWidth / 2;
y1 = serie.yaxis.p2c(dataitem[3]);
y2 = serie.yaxis.p2c(dataitem[4]);
if(between(mouseX,x,(x + serie.candlestick.barWidth))){
if(between(mouseY,y1,y2)){ item = [i,j]; }
}
}
return item;
}
}
function drawHoverCandlestick(octx,serie,dataIndex){
var data;
octx.save();
if(dataIndex.length){ data = serie.data[dataIndex[0]];} else{ data = serie.data[dataIndex];}
serie.candlestick.drawCandlestick(octx,serie,data,true);
octx.restore();
}
}
function createCandlestick(data){
var min = [], max = [];
for(var i = 0; i < data.data.length; i++){
min.push([data.data[i][0],data.data[i][3]]);
max.push([data.data[i][0],data.data[i][4]]);
}
var r = [ data,
{ label: "Max", data: max, lines:{ show: false}, candlestick:{ show: false}, nearBy: { findItem:null} },
{ label: "Min", data: min, lines:{ show: false}, candlestick:{ show: false}, nearBy: { findItem:null} }
];
return r;
}
function between(v,limit1,limit2){
if(limit2 > limit1){ return (v >= limit1 && v <= limit2); }
else{ return(v >=limit2 && v <= limit1); }
}
$.plot.candlestick = {};
$.plot.candlestick.createCandlestick = createCandlestick;
$.plot.plugins.push({
init: init,
options: options,
name: pluginName,
version: pluginVersion
});
})(jQuery);