| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712 |
- /**
- * o------------------------------------------------------------------------------o
- * | This file is part of the RGraph package - you can learn more at: |
- * | |
- * | http://www.rgraph.net |
- * | |
- * | This package is licensed under the RGraph license. For all kinds of business |
- * | purposes there is a small one-time licensing fee to pay and for non |
- * | commercial purposes it is free to use. You can read the full license here: |
- * | |
- * | http://www.rgraph.net/license |
- * o------------------------------------------------------------------------------o
- */
-
- if (typeof(RGraph) == 'undefined') RGraph = {};
- /**
- * The bar chart constructor
- *
- * @param object canvas The canvas object
- * @param array data The chart data
- */
- RGraph.Bar = function (id, data)
- {
- // Get the canvas and context objects
- this.id = id;
- this.canvas = document.getElementById(typeof id === 'object' ? id.id : id);
- this.context = this.canvas.getContext ? this.canvas.getContext("2d") : null;
- this.canvas.__object__ = this;
- this.type = 'bar';
- this.max = 0;
- this.stackedOrGrouped = false;
- this.isRGraph = true;
- this.uid = RGraph.CreateUID();
- this.canvas.uid = this.canvas.uid ? this.canvas.uid : RGraph.CreateUID();
- this.colorsParsed = false;
- /**
- * Compatibility with older browsers
- */
- RGraph.OldBrowserCompat(this.context);
- // Various config type stuff
- this.properties = {
- 'chart.background.barcolor1': 'rgba(0,0,0,0)',
- 'chart.background.barcolor2': 'rgba(0,0,0,0)',
- 'chart.background.grid': true,
- 'chart.background.grid.color': '#ddd',
- 'chart.background.grid.width': 1,
- 'chart.background.grid.hsize': 20,
- 'chart.background.grid.vsize': 20,
- 'chart.background.grid.vlines': true,
- 'chart.background.grid.hlines': true,
- 'chart.background.grid.border': true,
- 'chart.background.grid.autofit':true,
- 'chart.background.grid.autofit.numhlines': 5,
- 'chart.background.grid.autofit.numvlines': 20,
- 'chart.background.grid.dashed': false,
- 'chart.background.grid.dotted': false,
- 'chart.background.image.stretch': true,
- 'chart.background.image.x': null,
- 'chart.background.image.y': null,
- 'chart.background.image.w': null,
- 'chart.background.image.h': null,
- 'chart.background.image.align': null,
- 'chart.numyticks': 10,
- 'chart.hmargin': 5,
- 'chart.hmargin.grouped': 1,
- 'chart.strokecolor': 'rgba(0,0,0,0)',
- 'chart.axis.color': 'black',
- 'chart.axis.linewidth': 1,
- 'chart.gutter.top': 25,
- 'chart.gutter.bottom': 25,
- 'chart.gutter.left': 25,
- 'chart.gutter.right': 25,
- 'chart.labels': null,
- 'chart.labels.ingraph': null,
- 'chart.labels.above': false,
- 'chart.labels.above.decimals': 0,
- 'chart.labels.above.size': null,
- 'chart.labels.above.color': null,
- 'chart.labels.above.angle': null,
- 'chart.ylabels': true,
- 'chart.ylabels.count': 5,
- 'chart.ylabels.inside': false,
- 'chart.xlabels.offset': 0,
- 'chart.xaxispos': 'bottom',
- 'chart.yaxispos': 'left',
- 'chart.text.angle': 0,
- 'chart.text.color': 'black', // Gradients aren't supported for this color
- 'chart.text.size': 10,
- 'chart.text.font': 'Arial',
- 'chart.ymin': 0,
- 'chart.ymax': null,
- 'chart.title': '',
- 'chart.title.font': null,
- 'chart.title.background': null, // Gradients aren't supported for this color
- 'chart.title.hpos': null,
- 'chart.title.vpos': null,
- 'chart.title.bold': true,
- 'chart.title.xaxis': '',
- 'chart.title.xaxis.bold': true,
- 'chart.title.xaxis.size': null,
- 'chart.title.xaxis.font': null,
- 'chart.title.yaxis': '',
- 'chart.title.yaxis.bold': true,
- 'chart.title.yaxis.size': null,
- 'chart.title.yaxis.font': null,
- 'chart.title.yaxis.color': null, // Gradients aren't supported for this color
- 'chart.title.xaxis.pos': null,
- 'chart.title.yaxis.pos': null,
- 'chart.title.yaxis.x': null,
- 'chart.title.yaxis.y': null,
- 'chart.title.xaxis.x': null,
- 'chart.title.xaxis.y': null,
- 'chart.title.x': null,
- 'chart.title.y': null,
- 'chart.title.halign': null,
- 'chart.title.valign': null,
- 'chart.colors': ['#01B4FF', '#0f0', '#00f', '#ff0', '#0ff', '#0f0'],
- 'chart.colors.sequential': false,
- 'chart.colors.reverse': false,
- 'chart.grouping': 'grouped',
- 'chart.variant': 'bar',
- 'chart.variant.sketch.verticals': true,
- 'chart.shadow': false,
- 'chart.shadow.color': '#999', // Gradients aren't supported for this color
- 'chart.shadow.offsetx': 3,
- 'chart.shadow.offsety': 3,
- 'chart.shadow.blur': 3,
- 'chart.tooltips': null,
- 'chart.tooltips.effect': 'fade',
- 'chart.tooltips.css.class': 'RGraph_tooltip',
- 'chart.tooltips.event': 'onclick',
- 'chart.tooltips.highlight': true,
- 'chart.highlight.stroke': 'rgba(0,0,0,0)',
- 'chart.highlight.fill': 'rgba(255,255,255,0.7)',
- 'chart.background.hbars': null,
- 'chart.key': null,
- 'chart.key.background': 'white',
- 'chart.key.position': 'graph',
- 'chart.key.shadow': false,
- 'chart.key.shadow.color': '#666',
- 'chart.key.shadow.blur': 3,
- 'chart.key.shadow.offsetx': 2,
- 'chart.key.shadow.offsety': 2,
- 'chart.key.position.gutter.boxed':false,
- 'chart.key.position.x': null,
- 'chart.key.position.y': null,
- 'chart.key.interactive': false,
- 'chart.key.interactive.highlight.chart.stroke':'black',
- 'chart.key.interactive.highlight.chart.fill':'rgba(255,255,255,0.7)',
- 'chart.key.interactive.highlight.label':'rgba(255,0,0,0.2)',
- 'chart.key.halign': 'right',
- 'chart.key.color.shape': 'square',
- 'chart.key.rounded': true,
- 'chart.key.text.size': 10,
- 'chart.key.linewidth': 1,
- 'chart.key.colors': null,
- 'chart.key.text.color': 'black',
- 'chart.contextmenu': null,
- 'chart.units.pre': '',
- 'chart.units.post': '',
- 'chart.scale.decimals': 0,
- 'chart.scale.point': '.',
- 'chart.scale.thousand': ',',
- 'chart.crosshairs': false,
- 'chart.crosshairs.color': '#333',
- 'chart.crosshairs.hline': true,
- 'chart.crosshairs.vline': true,
- 'chart.linewidth': 1,
- 'chart.annotatable': false,
- 'chart.annotate.color': 'black',
- 'chart.zoom.factor': 1.5,
- 'chart.zoom.fade.in': true,
- 'chart.zoom.fade.out': true,
- 'chart.zoom.hdir': 'right',
- 'chart.zoom.vdir': 'down',
- 'chart.zoom.frames': 25,
- 'chart.zoom.delay': 16.666,
- 'chart.zoom.shadow': true,
- 'chart.zoom.background': true,
- 'chart.resizable': false,
- 'chart.resize.handle.background': null,
- 'chart.adjustable': false,
- 'chart.noaxes': false,
- 'chart.noxaxis': false,
- 'chart.noyaxis': false,
- 'chart.events.click': null,
- 'chart.events.mousemove': null,
- 'chart.numxticks': null,
- 'chart.bevel': false
- }
- // Check for support
- if (!this.canvas) {
- alert('[BAR] No canvas support');
- return;
- }
- /**
- * Determine whether the chart will contain stacked or grouped bars
- */
- for (var i=0; i<data.length; ++i) {
- if (typeof(data[i]) == 'object' && !RGraph.is_null(data[i])) {
- this.stackedOrGrouped = true;
- }
- }
- /**
- * Create the dollar objects so that functions can be added to them
- */
- var linear_data = RGraph.array_linearize(data);
- for (var i=0; i<linear_data.length; ++i) {
- this['$' + i] = {};
- }
- // Store the data
- this.data = data;
-
- // Used to store the coords of the bars
- this.coords = [];
- this.coords2 = [];
- this.coordsText = [];
- /**
- * This linearises the data. Doing so can make it easier to pull
- * out the appropriate data from tooltips
- */
- this.data_arr = RGraph.array_linearize(this.data);
- /**
- * Translate half a pixel for antialiasing purposes - but only if it hasn't beeen
- * done already
- */
- if (!this.canvas.__rgraph_aa_translated__) {
- this.context.translate(0.5,0.5);
- this.canvas.__rgraph_aa_translated__ = true;
- }
- ///////////////////////////////// SHORT PROPERTIES /////////////////////////////////
- var RG = RGraph;
- var ca = this.canvas;
- var co = ca.getContext('2d');
- var prop = this.properties;
- //////////////////////////////////// METHODS ///////////////////////////////////////
- /**
- * A setter
- *
- * @param name string The name of the property to set
- * @param value mixed The value of the property
- */
- this.Set = function (name, value)
- {
- name = name.toLowerCase();
-
- /**
- * This should be done first - prepend the propertyy name with "chart." if necessary
- */
- if (name.substr(0,6) != 'chart.') {
- name = 'chart.' + name;
- }
-
- if (name == 'chart.labels.abovebar') {
- name = 'chart.labels.above';
- }
-
- if (name == 'chart.strokestyle') {
- name = 'chart.strokecolor';
- }
-
- /**
- * Check for xaxispos
- */
- if (name == 'chart.xaxispos' ) {
- if (value != 'bottom' && value != 'center' && value != 'top') {
- alert('[BAR] (' + this.id + ') chart.xaxispos should be top, center or bottom. Tried to set it to: ' + value + ' Changing it to center');
- value = 'center';
- }
-
- if (value == 'top') {
- for (var i=0; i<this.data.length; ++i) {
- if (typeof(this.data[i]) == 'number' && this.data[i] > 0) {
- alert('[BAR] The data element with index ' + i + ' should be negative');
- }
- }
- }
- }
-
- /**
- * lineWidth doesn't appear to like a zero setting
- */
- if (name.toLowerCase() == 'chart.linewidth' && value == 0) {
- value = 0.0001;
- }
-
- prop[name] = value;
-
- return this;
- }
- /**
- * A getter
- *
- * @param name string The name of the property to get
- */
- this.Get = function (name)
- {
- /**
- * This should be done first - prepend the property name with "chart." if necessary
- */
- if (name.substr(0,6) != 'chart.') {
- name = 'chart.' + name;
- }
-
- return prop[name];
- }
- /**
- * The function you call to draw the bar chart
- */
- this.Draw = function ()
- {
- // MUST be the first thing done!
- if (typeof(prop['chart.background.image']) == 'string') {
- RG.DrawBackgroundImage(this);
- }
-
- /**
- * Fire the onbeforedraw event
- */
- RG.FireCustomEvent(this, 'onbeforedraw');
-
-
-
- /**
- * Parse the colors. This allows for simple gradient syntax
- */
- if (!this.colorsParsed) {
- this.parseColors();
-
- // Don't want to do this again
- this.colorsParsed = true;
- }
-
-
-
- /**
- * This is new in May 2011 and facilitates indiviual gutter settings,
- * eg chart.gutter.left
- */
- this.gutterLeft = prop['chart.gutter.left'];
- this.gutterRight = prop['chart.gutter.right'];
- this.gutterTop = prop['chart.gutter.top'];
- this.gutterBottom = prop['chart.gutter.bottom'];
-
-
- // Cache this in a class variable as it's used rather a lot
-
- /**
- * Check for tooltips and alert the user that they're not supported with pyramid charts
- */
- if ( (prop['chart.variant'] == 'pyramid' || prop['chart.variant'] == 'dot')
- && typeof(prop['chart.tooltips']) == 'object'
- && prop['chart.tooltips']
- && prop['chart.tooltips'].length > 0) {
-
- alert('[BAR] (' + this.id + ') Sorry, tooltips are not supported with dot or pyramid charts');
- }
-
- /**
- * Stop the coords arrays from growing uncontrollably
- */
- this.coords = [];
- this.coords2 = [];
- this.coordsText = [];
-
- /**
- * Work out a few things. They need to be here because they depend on things you can change before you
- * call Draw() but after you instantiate the object
- */
- this.max = 0;
- this.grapharea = ca.height - this.gutterTop - this.gutterBottom;
- this.halfgrapharea = this.grapharea / 2;
- this.halfTextHeight = prop['chart.text.size'] / 2;
-
-
- // Progressively Draw the chart
- RG.background.Draw(this);
-
-
-
-
- //If it's a sketch chart variant, draw the axes first
- if (prop['chart.variant'] == 'sketch') {
- this.DrawAxes();
- this.Drawbars();
- } else {
- this.Drawbars();
- this.DrawAxes();
- }
-
- this.DrawLabels();
-
-
- /**
- * Draw the bevel if required
- */
- if (prop['chart.bevel'] || prop['chart.bevelled']) {
- this.DrawBevel();
- }
-
-
- // Draw the key if necessary
- if (prop['chart.key'] && prop['chart.key'].length) {
- RG.DrawKey(this, prop['chart.key'], prop['chart.colors']);
- }
-
-
- /**
- * Setup the context menu if required
- */
- if (prop['chart.contextmenu']) {
- RG.ShowContext(this);
- }
-
-
- /**
- * Draw "in graph" labels
- */
- if (prop['chart.labels.ingraph']) {
- RG.DrawInGraphLabels(this);
- }
-
-
- /**
- * This function enables resizing
- */
- if (prop['chart.resizable']) {
- RG.AllowResizing(this);
- }
-
-
- /**
- * This installs the event listeners
- */
- RG.InstallEventListeners(this);
-
-
- /**
- * Fire the RGraph ondraw event
- */
- RG.FireCustomEvent(this, 'ondraw');
-
- return this;
- }
- /**
- * Draws the charts axes
- */
- this.DrawAxes = function ()
- {
- if (prop['chart.noaxes']) {
- return;
- }
-
- var xaxispos = prop['chart.xaxispos'];
- var yaxispos = prop['chart.yaxispos'];
- var isSketch = prop['chart.variant'] == 'sketch';
-
- co.beginPath();
- co.strokeStyle = prop['chart.axis.color'];
- co.lineWidth = prop['chart.axis.linewidth'] + 0.001;
-
- if (ISSAFARI == -1) {
- co.lineCap = 'square';
- }
-
-
- // Draw the Y axis
- if (prop['chart.noyaxis'] == false) {
- if (yaxispos == 'right') {
- co.moveTo(ca.width - this.gutterRight + (isSketch ? 3 : 0), this.gutterTop - (isSketch ? 3 : 0));
- co.lineTo(ca.width - this.gutterRight - (isSketch ? 2 : 0), ca.height - this.gutterBottom + (isSketch ? 5 : 0));
- } else {
- co.moveTo(this.gutterLeft - (isSketch ? 2 : 0), this.gutterTop - (isSketch ? 5 : 0));
- co.lineTo(this.gutterLeft - (isSketch ? 1 : 0), ca.height - this.gutterBottom + (isSketch ? 5 : 0));
- }
- }
-
- // Draw the X axis
- if (prop['chart.noxaxis'] == false) {
- if (xaxispos == 'center') {
- co.moveTo(this.gutterLeft - (isSketch ? 5 : 0), Math.round(((ca.height - this.gutterTop - this.gutterBottom) / 2) + this.gutterTop + (isSketch ? 2 : 0)));
- co.lineTo(ca.width - this.gutterRight + (isSketch ? 5 : 0), Math.round(((ca.height - this.gutterTop - this.gutterBottom) / 2) + this.gutterTop - (isSketch ? 2 : 0)));
- } else if (xaxispos == 'top') {
- co.moveTo(this.gutterLeft - (isSketch ? 3 : 0), this.gutterTop - (isSketch ? 3 : 0));
- co.lineTo(ca.width - this.gutterRight + (isSketch ? 5 : 0), this.gutterTop + (isSketch ? 2 : 0));
- } else {
- co.moveTo(this.gutterLeft - (isSketch ? 5 : 0), ca.height - this.gutterBottom - (isSketch ? 2 : 0));
- co.lineTo(ca.width - this.gutterRight + (isSketch ? 8 : 0), ca.height - this.gutterBottom + (isSketch ? 2 : 0));
- }
- }
-
- var numYTicks = prop['chart.numyticks'];
-
- // Draw the Y tickmarks
- if (prop['chart.noyaxis'] == false && !isSketch) {
- var yTickGap = (ca.height - this.gutterTop - this.gutterBottom) / numYTicks;
- var xpos = yaxispos == 'left' ? this.gutterLeft : ca.width - this.gutterRight;
-
- if (this.properties['chart.numyticks'] > 0) {
- for (y=this.gutterTop;
- xaxispos == 'center' ? y <= (ca.height - this.gutterBottom) : y < (ca.height - this.gutterBottom + (xaxispos == 'top' ? 1 : 0));
- y += yTickGap) {
-
- if (xaxispos == 'center' && y == (this.gutterTop + (this.grapharea / 2))) continue;
-
- // X axis at the top
- if (xaxispos == 'top' && y == this.gutterTop) continue;
-
- co.moveTo(xpos + (yaxispos == 'left' ? 0 : 0), Math.round(y));
- co.lineTo(xpos + (yaxispos == 'left' ? -3 : 3), Math.round(y));
- }
- }
-
- /**
- * If the X axis is not being shown, draw an extra tick
- */
- if (prop['chart.noxaxis']) {
- if (xaxispos == 'center') {
- co.moveTo(xpos + (yaxispos == 'left' ? -3 : 3), Math.round(ca.height / 2));
- co.lineTo(xpos, Math.round(ca.height / 2));
- } else if (xaxispos == 'top') {
- co.moveTo(xpos + (yaxispos == 'left' ? -3 : 3), Math.round(this.gutterTop));
- co.lineTo(xpos, Math.round(this.gutterTop));
- } else {
- co.moveTo(xpos + (yaxispos == 'left' ? -3 : 3), Math.round(ca.height - this.gutterBottom));
- co.lineTo(xpos, Math.round(ca.height - this.gutterBottom));
- }
- }
- }
-
-
- // Draw the X tickmarks
- if (prop['chart.noxaxis'] == false && !isSketch) {
-
- if (typeof(prop['chart.numxticks']) == 'number') {
- var xTickGap = (ca.width - this.gutterLeft - this.gutterRight) / prop['chart.numxticks'];
- } else {
- var xTickGap = (ca.width - this.gutterLeft - this.gutterRight) / this.data.length;
- }
-
- if (xaxispos == 'bottom') {
- yStart = ca.height - this.gutterBottom;
- yEnd = (ca.height - this.gutterBottom) + 3;
- } else if (xaxispos == 'top') {
- yStart = this.gutterTop - 3;
- yEnd = this.gutterTop;
- } else if (xaxispos == 'center') {
- yStart = ((ca.height - this.gutterTop - this.gutterBottom) / 2) + this.gutterTop + 3;
- yEnd = ((ca.height - this.gutterTop - this.gutterBottom) / 2) + this.gutterTop - 3;
- }
-
- yStart = yStart;
- yEnd = yEnd;
-
- //////////////// X TICKS ////////////////
- var noEndXTick = prop['chart.noendxtick'];
-
- for (x=this.gutterLeft + (yaxispos == 'left' ? xTickGap : 0),len=(ca.width - this.gutterRight + (yaxispos == 'left' ? 5 : 0)); x<len; x+=xTickGap) {
-
- if (yaxispos == 'left' && !noEndXTick && x > this.gutterLeft) {
- co.moveTo(Math.round(x), yStart);
- co.lineTo(Math.round(x), yEnd);
-
- } else if (yaxispos == 'left' && noEndXTick && x > this.gutterLeft && x < (ca.width - this.gutterRight) ) {
- co.moveTo(Math.round(x), yStart);
- co.lineTo(Math.round(x), yEnd);
-
- } else if (yaxispos == 'right' && x < (ca.width - this.gutterRight) && !noEndXTick) {
- co.moveTo(Math.round(x), yStart);
- co.lineTo(Math.round(x), yEnd);
-
- } else if (yaxispos == 'right' && x < (ca.width - this.gutterRight) && x > (this.gutterLeft) && noEndXTick) {
- co.moveTo(Math.round(x), yStart);
- co.lineTo(Math.round(x), yEnd);
- }
- }
-
- if (prop['chart.noyaxis'] || prop['chart.numxticks'] == null) {
- if (typeof(prop['chart.numxticks']) == 'number' && prop['chart.numxticks'] > 0) {
- co.moveTo(Math.round(this.gutterLeft), yStart);
- co.lineTo(Math.round(this.gutterLeft), yEnd);
- }
- }
-
- //////////////// X TICKS ////////////////
- }
-
- /**
- * If the Y axis is not being shown, draw an extra tick
- */
- if (prop['chart.noyaxis'] && prop['chart.noxaxis'] == false && prop['chart.numxticks'] == null) {
- if (xaxispos == 'center') {
- co.moveTo(Math.round(this.gutterLeft), (ca.height / 2) - 3);
- co.lineTo(Math.round(this.gutterLeft), (ca.height / 2) + 3);
- } else {
- co.moveTo(Math.round(this.gutterLeft), ca.height - this.gutterBottom);
- co.lineTo(Math.round(this.gutterLeft), ca.height - this.gutterBottom + 3);
- }
- }
-
- co.stroke();
- }
-
-
-
- /**
- * Draws the bars
- */
- this.Drawbars = function ()
- {
- // Variable "caching" so the context can be accessed as a local variable
- var ca = this.canvas;
- var co = this.context;
- var prop = this.properties;
-
- co.lineWidth = prop['chart.linewidth'];
- co.strokeStyle = prop['chart.strokecolor'];
- co.fillStyle = prop['chart.colors'][0];
- var prevX = 0;
- var prevY = 0;
- var decimals = prop['chart.scale.decimals'];
-
- /**
- * Work out the max value
- */
- if (prop['chart.ymax']) {
-
- this.scale2 = RGraph.getScale2(this, {
- 'max':prop['chart.ymax'],
- 'strict': true,
- 'min':prop['chart.ymin'],
- 'scale.thousand':prop['chart.scale.thousand'],
- 'scale.point':prop['chart.scale.point'],
- 'scale.decimals':prop['chart.scale.decimals'],
- 'ylabels.count':prop['chart.ylabels.count'],
- 'scale.round':prop['chart.scale.round'],
- 'units.pre': prop['chart.units.pre'],
- 'units.post': prop['chart.units.post']
- });
-
- } else {
-
- for (i=0; i<this.data.length; ++i) {
- if (typeof(this.data[i]) == 'object') {
- var value = prop['chart.grouping'] == 'grouped' ? Number(RGraph.array_max(this.data[i], true)) : Number(RGraph.array_sum(this.data[i])) ;
-
- } else {
- var value = Number(this.data[i]);
- }
-
- this.max = Math.max(Math.abs(this.max), Math.abs(value));
- }
-
- this.scale2 = RGraph.getScale2(this, {
- 'max':this.max,
- 'min':prop['chart.ymin'],
- 'scale.thousand':prop['chart.scale.thousand'],
- 'scale.point':prop['chart.scale.point'],
- 'scale.decimals':prop['chart.scale.decimals'],
- 'ylabels.count':prop['chart.ylabels.count'],
- 'scale.round':prop['chart.scale.round'],
- 'units.pre': prop['chart.units.pre'],
- 'units.post': prop['chart.units.post']
- });
-
- this.max = this.scale2.max;
- }
- /**
- * if the chart is adjustable fix the scale so that it doesn't change.
- */
- if (prop['chart.adjustable'] && !prop['chart.ymax']) {
- this.Set('chart.ymax', this.scale2.max);
- }
-
- /**
- * Draw horizontal bars here
- */
- if (prop['chart.background.hbars'] && prop['chart.background.hbars'].length > 0) {
- RGraph.DrawBars(this);
- }
-
- var variant = prop['chart.variant'];
-
- /**
- * Draw the 3D axes is necessary
- */
- if (variant == '3d') {
- RG.Draw3DAxes(this);
- }
-
- /**
- * Get the variant once, and draw the bars, be they regular, stacked or grouped
- */
-
- // Get these variables outside of the loop
- var xaxispos = prop['chart.xaxispos'];
- var width = (ca.width - this.gutterLeft - this.gutterRight ) / this.data.length;
- var orig_height = height;
- var hmargin = prop['chart.hmargin'];
- var shadow = prop['chart.shadow'];
- var shadowColor = prop['chart.shadow.color'];
- var shadowBlur = prop['chart.shadow.blur'];
- var shadowOffsetX = prop['chart.shadow.offsetx'];
- var shadowOffsetY = prop['chart.shadow.offsety'];
- var strokeStyle = prop['chart.strokecolor'];
- var colors = prop['chart.colors'];
- var sequentialColorIndex = 0;
-
- for (i=0,len=this.data.length; i<len; i+=1) {
-
- // Work out the height
- //The width is up outside the loop
- var height = ((RGraph.array_sum(this.data[i]) < 0 ? RGraph.array_sum(this.data[i]) + this.scale2.min : RGraph.array_sum(this.data[i]) - this.scale2.min) / (this.scale2.max - this.scale2.min) ) * (ca.height - this.gutterTop - this.gutterBottom);
-
- // Half the height if the Y axis is at the center
- if (xaxispos == 'center') {
- height /= 2;
- }
-
- var x = (i * width) + this.gutterLeft;
- var y = xaxispos == 'center' ? ((ca.height - this.gutterTop - this.gutterBottom) / 2) + this.gutterTop - height
- : ca.height - height - this.gutterBottom;
-
- // xaxispos is top
- if (xaxispos == 'top') {
- y = this.gutterTop + Math.abs(height);
- }
-
-
- // Account for negative lengths - Some browsers (eg Chrome) don't like a negative value
- if (height < 0) {
- y += height;
- height = Math.abs(height);
- }
-
- /**
- * Turn on the shadow if need be
- */
- if (shadow) {
- co.shadowColor = shadowColor;
- co.shadowBlur = shadowBlur;
- co.shadowOffsetX = shadowOffsetX;
- co.shadowOffsetY = shadowOffsetY;
- }
-
- /**
- * Draw the bar
- */
- co.beginPath();
- if (typeof(this.data[i]) == 'number') {
-
- var barWidth = width - (2 * hmargin);
-
- /**
- * Check for a negative bar width
- */
- if (barWidth < 0) {
- alert('[RGRAPH] Warning: you have a negative bar width. This may be caused by the chart.hmargin being too high or the width of the canvas not being sufficient.');
- }
-
- // Set the fill color
- co.strokeStyle = strokeStyle;
- co.fillStyle = colors[0];
-
- /**
- * Sequential colors
- */
- if (prop['chart.colors.sequential']) {
- co.fillStyle = colors[i];
- }
-
- if (variant == 'sketch') {
-
- co.lineCap = 'round';
-
- var sketchOffset = 3;
-
- co.beginPath();
-
- co.strokeStyle = colors[0];
-
- /**
- * Sequential colors
- */
- if (prop['chart.colors.sequential']) {
- co.strokeStyle = colors[i];
- }
-
- // Left side
- co.moveTo(x + hmargin + 2, y + height - 2);
- co.lineTo(x + hmargin - 1, y - 4);
-
- // The top
- co.moveTo(x + hmargin - 3, y + -2 + (this.data[i] < 0 ? height : 0));
- co.bezierCurveTo(
- x + ((hmargin + width) * 0.33),
- y + 15 + (this.data[i] < 0 ? height - 10: 0),
- x + ((hmargin + width) * 0.66),
- y + 5 + (this.data[i] < 0 ? height - 10 : 0),x + hmargin + width + -1, y + 0 + (this.data[i] < 0 ? height : 0)
- );
-
-
- // The right side
- co.moveTo(x + hmargin + width - 5, y - 5);
- co.lineTo(x + hmargin + width - 3, y + height - 3);
-
- if (prop['chart.variant.sketch.verticals']) {
- for (var r=0.2; r<=0.8; r+=0.2) {
- co.moveTo(x + hmargin + width + (r > 0.4 ? -1 : 3) - (r * width),y - 1);
- co.lineTo(x + hmargin + width - (r > 0.4 ? 1 : -1) - (r * width), y + height + (r == 0.2 ? 1 : -2));
- }
- }
-
- co.stroke();
-
- // Regular bar
- } else if (variant == 'bar' || variant == '3d' || variant == 'glass' || variant == 'bevel') {
-
- if (RGraph.isOld() && shadow) {
- this.DrawIEShadow([x + hmargin, y, barWidth, height]);
- }
-
- if (variant == 'glass') {
- RGraph.filledCurvyRect(co, x + hmargin, y, barWidth, height, 3, this.data[i] > 0, this.data[i] > 0, this.data[i] < 0, this.data[i] < 0);
- RGraph.strokedCurvyRect(co, x + hmargin, y, barWidth, height, 3, this.data[i] > 0, this.data[i] > 0, this.data[i] < 0, this.data[i] < 0);
- } else {
- // On 9th April 2013 these two were swapped around so that the stroke happens SECOND so that any
- // shadow that is cast by the fill does not overwrite the stroke
- co.beginPath();
- co.rect(x + hmargin, y, barWidth, height);
- co.fill();
-
- // Turn the shadow off so that the stroke doesn't cast any "extra" shadow
- // that would show inside the bar
- RG.NoShadow(this);
-
- co.beginPath();
- co.rect(x + hmargin, y, barWidth, height);
- co.stroke();
- }
-
- // 3D effect
- if (variant == '3d') {
-
- var prevStrokeStyle = co.strokeStyle;
- var prevFillStyle = co.fillStyle;
-
- // Draw the top
- co.beginPath();
- co.moveTo(x + hmargin, y);
- co.lineTo(x + hmargin + 10, y - 5);
- co.lineTo(x + hmargin + 10 + barWidth, y - 5);
- co.lineTo(x + hmargin + barWidth, y);
- co.closePath();
-
- co.stroke();
- co.fill();
-
- // Draw the right hand side
- co.beginPath();
- co.moveTo(x + hmargin + barWidth, y);
- co.lineTo(x + hmargin + barWidth + 10, y - 5);
- co.lineTo(x + hmargin + barWidth + 10, y + height - 5);
- co.lineTo(x + hmargin + barWidth, y + height);
- co.closePath();
-
- co.stroke();
- co.fill();
-
- // Draw the darker top section
- co.beginPath();
- co.fillStyle = 'rgba(255,255,255,0.3)';
- co.moveTo(x + hmargin, y);
- co.lineTo(x + hmargin + 10, y - 5);
- co.lineTo(x + hmargin + 10 + barWidth, y - 5);
- co.lineTo(x + hmargin + barWidth, y);
- co.lineTo(x + hmargin, y);
- co.closePath();
-
- co.stroke();
- co.fill();
-
- // Draw the darker right side section
- co.beginPath();
- co.fillStyle = 'rgba(0,0,0,0.4)';
- co.moveTo(x + hmargin + barWidth, y);
- co.lineTo(x + hmargin + barWidth + 10, y - 5);
- co.lineTo(x + hmargin + barWidth + 10, y - 5 + height);
- co.lineTo(x + hmargin + barWidth, y + height);
- co.lineTo(x + hmargin + barWidth, y);
- co.closePath();
-
- co.stroke();
- co.fill();
-
- co.strokeStyle = prevStrokeStyle;
- co.fillStyle = prevFillStyle;
-
- // Glass variant
- } else if (variant == 'glass') {
-
- var grad = co.createLinearGradient(x + hmargin,y,x + hmargin + (barWidth / 2),y);
- grad.addColorStop(0, 'rgba(255,255,255,0.9)');
- grad.addColorStop(1, 'rgba(255,255,255,0.5)');
-
- co.beginPath();
- co.fillStyle = grad;
- co.fillRect(x + hmargin + 2,y + (this.data[i] > 0 ? 2 : 0),(barWidth / 2) - 2,height - 2);
- co.fill();
- }
-
- // This bit draws the text labels that appear above the bars if requested
- if (prop['chart.labels.above']) {
-
- // Turn off any shadow
- if (shadow) {
- RGraph.NoShadow(this);
- }
-
- var yPos = y - 3;
- var xPos = x + hmargin + (barWidth / 2);
-
- // Account for negative bars
- if (this.data[i] < 0) {
- yPos += height + 6 + (prop['chart.text.size']);
- }
-
- // Account for chart.xaxispos=top
- if (prop['chart.xaxispos'] == 'top') {
- yPos = this.gutterTop + height + 6 + (typeof(prop['chart.labels.above.size']) == 'number' ? prop['chart.labels.above.size'] : prop['chart.text.size'] - 4);
- }
-
- // Account for chart.variant=3d
- if (prop['chart.variant'] == '3d') {
- yPos -= 3;
- xPos += 5;
- }
-
- // Angled above labels
- if (this.properties['chart.labels.above.angle']) {
- var angle = -45;
- var halign = 'left';
- var valign = 'center';
- } else {
- var angle = 0;
- var halign = 'center';
- var valign = 'bottom';
- }
- // Above labels color
- if (typeof this.properties['chart.labels.above.color'] == 'string') {
- co.fillStyle = prop['chart.labels.above.color'];
- } else {
- co.fillStyle = prop['chart.text.color'];
- }
-
- RGraph.Text2(this, {'font': prop['chart.text.font'],
- 'size': typeof(prop['chart.labels.above.size']) == 'number' ? prop['chart.labels.above.size'] : prop['chart.text.size'] - 3,
- 'x': xPos,
- 'y': yPos,
- 'text': RGraph.number_format(this, Number(this.data[i]).toFixed(prop['chart.labels.above.decimals']),prop['chart.units.pre'],prop['chart.units.post']),
- 'halign': halign,
- 'marker': false,
- 'valign': valign,
- 'angle': angle,
- 'tag': 'labels.above'
- });
- }
-
- // Dot chart
- } else if (variant == 'dot') {
-
- co.beginPath();
- co.moveTo(x + (width / 2), y);
- co.lineTo(x + (width / 2), y + height);
- co.stroke();
-
- co.beginPath();
- co.fillStyle = this.properties['chart.colors'][i];
- co.arc(x + (width / 2), y + (this.data[i] > 0 ? 0 : height), 2, 0, 6.28, 0);
-
- // Set the colour for the dots
- co.fillStyle = prop['chart.colors'][0];
-
- /**
- * Sequential colors
- */
- if (prop['chart.colors.sequential']) {
- co.fillStyle = colors[i];
- }
-
- co.stroke();
- co.fill();
-
-
- // Unknown variant type
- } else {
- alert('[BAR] Warning! Unknown chart.variant: ' + variant);
- }
- this.coords.push([x + hmargin, y, width - (2 * hmargin), height]);
-
- if (typeof this.coords2[i] == 'undefined') {
- this.coords2[i] = [];
- }
- this.coords2[i].push([x + hmargin, y, width - (2 * hmargin), height]);
-
-
- /**
- * Stacked bar
- */
- } else if (this.data[i] && typeof(this.data[i]) == 'object' && prop['chart.grouping'] == 'stacked') {
-
- if (this.scale2.min) {
- alert("[ERROR] Stacked Bar charts with a Y min are not supported");
- }
-
- var barWidth = width - (2 * hmargin);
- var redrawCoords = [];// Necessary to draw if the shadow is enabled
- var startY = 0;
- var dataset = this.data[i];
-
- /**
- * Check for a negative bar width
- */
- if (barWidth < 0) {
- alert('[RGRAPH] Warning: you have a negative bar width. This may be caused by the chart.hmargin being too high or the width of the canvas not being sufficient.');
- }
-
- for (j=0; j<dataset.length; ++j) {
-
- // Stacked bar chart and X axis pos in the middle - poitless since negative values are not permitted
- if (xaxispos == 'center') {
- alert("[BAR] It's pointless having the X axis position at the center on a stacked bar chart.");
- return;
- }
-
- // Negative values not permitted for the stacked chart
- if (this.data[i][j] < 0) {
- alert('[BAR] Negative values are not permitted with a stacked bar chart. Try a grouped one instead.');
- return;
- }
-
- /**
- * Set the fill and stroke colors
- */
- co.strokeStyle = strokeStyle
- co.fillStyle = colors[j];
-
- if (prop['chart.colors.reverse']) {
- co.fillStyle = colors[this.data[i].length - j - 1];
- }
-
- if (prop['chart.colors.sequential'] && colors[sequentialColorIndex]) {
- co.fillStyle = colors[sequentialColorIndex++];
- } else if (prop['chart.colors.sequential']) {
- co.fillStyle = colors[sequentialColorIndex - 1];
- }
-
- var height = (dataset[j] / this.scale2.max) * (ca.height - this.gutterTop - this.gutterBottom );
- // If the X axis pos is in the center, we need to half the height
- if (xaxispos == 'center') {
- height /= 2;
- }
-
- var totalHeight = (RGraph.array_sum(dataset) / this.scale2.max) * (ca.height - hmargin - this.gutterTop - this.gutterBottom);
-
- /**
- * Store the coords for tooltips
- */
- this.coords.push([x + hmargin, y, width - (2 * hmargin), height]);
- if (typeof this.coords2[i] == 'undefined') {
- this.coords2[i] = [];
- }
- this.coords2[i].push([x + hmargin, y, width - (2 * hmargin), height]);
-
- // MSIE shadow
- if (RGraph.isOld() && shadow) {
- this.DrawIEShadow([x + hmargin, y, width - (2 * hmargin), height + 1]);
- }
-
- if (height > 0) {
- co.strokeRect(x + hmargin, y, width - (2 * hmargin), height);
- co.fillRect(x + hmargin, y, width - (2 * hmargin), height);
- }
-
- if (j == 0) {
- var startY = y;
- var startX = x;
- }
-
- /**
- * Store the redraw coords if the shadow is enabled
- */
- if (shadow) {
- redrawCoords.push([x + hmargin, y, width - (2 * hmargin), height, co.fillStyle]);
- }
-
- /**
- * Stacked 3D effect
- */
- if (variant == '3d') {
-
- var prevFillStyle = co.fillStyle;
- var prevStrokeStyle = co.strokeStyle;
-
-
- // Draw the top side
- if (j == 0) {
- co.beginPath();
- co.moveTo(startX + hmargin, y);
- co.lineTo(startX + 10 + hmargin, y - 5);
- co.lineTo(startX + 10 + barWidth + hmargin, y - 5);
- co.lineTo(startX + barWidth + hmargin, y);
- co.closePath();
-
- co.fill();
- co.stroke();
- }
-
- // Draw the side section
- co.beginPath();
- co.moveTo(startX + barWidth + hmargin, y);
- co.lineTo(startX + barWidth + hmargin + 10, y - 5);
- co.lineTo(startX + barWidth + hmargin + 10, y - 5 + height);
- co.lineTo(startX + barWidth + hmargin , y + height);
- co.closePath();
-
- co.fill();
- co.stroke();
-
- // Draw the darker top side
- if (j == 0) {
- co.fillStyle = 'rgba(255,255,255,0.3)';
- co.beginPath();
- co.moveTo(startX + hmargin, y);
- co.lineTo(startX + 10 + hmargin, y - 5);
- co.lineTo(startX + 10 + barWidth + hmargin, y - 5);
- co.lineTo(startX + barWidth + hmargin, y);
- co.closePath();
-
- co.fill();
- co.stroke();
- }
-
- // Draw the darker side section
- co.fillStyle = 'rgba(0,0,0,0.4)';
- co.beginPath();
- co.moveTo(startX + barWidth + hmargin, y);
- co.lineTo(startX + barWidth + hmargin + 10, y - 5);
- co.lineTo(startX + barWidth + hmargin + 10, y - 5 + height);
- co.lineTo(startX + barWidth + hmargin , y + height);
- co.closePath();
-
- co.fill();
- co.stroke();
-
- co.strokeStyle = prevStrokeStyle;
- co.fillStyle = prevFillStyle;
- }
-
- y += height;
- }
-
- // This bit draws the text labels that appear above the bars if requested
- if (prop['chart.labels.above']) {
-
- // Turn off any shadow
- RG.NoShadow(this);
-
- // Above labels color
- if (typeof this.properties['chart.labels.above.color'] == 'string') {
- co.fillStyle = prop['chart.labels.above.color'];
- } else {
- co.fillStyle = prop['chart.text.color'];
- }
-
- // Angled above labels
- if (prop['chart.labels.above.angle']) {
- var angle = -45;
- var halign = 'left';
- var valign = 'center';
- } else {
- var angle = 0;
- var halign = 'center';
- var valign = 'bottom';
- }
-
- RGraph.Text2(this,{'font': prop['chart.text.font'],
- 'size': typeof(prop['chart.labels.above.size']) == 'number' ? prop['chart.labels.above.size'] : prop['chart.text.size'] - 3,
- 'x': startX + (barWidth / 2) + prop['chart.hmargin'],
- 'y': startY - (prop['chart.shadow'] && prop['chart.shadow.offsety'] < 0 ? 7 : 4) - (prop['chart.variant'] == '3d' ? 5 : 0),
- 'text': String(prop['chart.units.pre'] + RGraph.array_sum(this.data[i]).toFixed(prop['chart.labels.above.decimals']) + prop['chart.units.post']),
- 'angle': angle,
- 'valign': valign,
- 'halign': halign,
- 'tag': 'labels.above'
- });
-
-
- // Turn any shadow back on
- if (shadow) {
- co.shadowColor = shadowColor;
- co.shadowBlur = shadowBlur;
- co.shadowOffsetX = shadowOffsetX;
- co.shadowOffsetY = shadowOffsetY;
- }
- }
-
-
- /**
- * Redraw the bars if the shadow is enabled due to hem being drawn from the bottom up, and the
- * shadow spilling over to higher up bars
- */
- if (shadow) {
-
- RGraph.NoShadow(this);
-
- for (k=0; k<redrawCoords.length; ++k) {
- co.strokeStyle = strokeStyle;
- co.fillStyle = redrawCoords[k][4];
- co.strokeRect(redrawCoords[k][0], redrawCoords[k][1], redrawCoords[k][2], redrawCoords[k][3]);
- co.fillRect(redrawCoords[k][0], redrawCoords[k][1], redrawCoords[k][2], redrawCoords[k][3]);
-
- co.stroke();
- co.fill();
- }
-
- // Reset the redraw coords to be empty
- redrawCoords = [];
- }
- /**
- * Grouped bar
- */
- } else if (this.data[i] && typeof(this.data[i]) == 'object' && prop['chart.grouping'] == 'grouped') {
-
- var redrawCoords = [];
- co.lineWidth = prop['chart.linewidth'];
-
- for (j=0; j<this.data[i].length; ++j) {
-
- // Set the fill and stroke colors
- co.strokeStyle = strokeStyle;
- co.fillStyle = colors[j];
-
- /**
- * Sequential colors
- */
- if (prop['chart.colors.sequential'] && colors[sequentialColorIndex]) {
- co.fillStyle = colors[sequentialColorIndex++];
- } else if (prop['chart.colors.sequential']) {
- co.fillStyle = colors[sequentialColorIndex - 1];
- }
-
- var individualBarWidth = (width - (2 * hmargin)) / this.data[i].length;
- var height = ((this.data[i][j] + (this.data[i][j] < 0 ? this.scale2.min : (-1 * this.scale2.min) )) / (this.scale2.max - this.scale2.min) ) * (ca.height - this.gutterTop - this.gutterBottom );
- var groupedMargin = prop['chart.hmargin.grouped'];
- var startX = x + hmargin + (j * individualBarWidth);
-
- /**
- * Check for a negative bar width
- */
- if (individualBarWidth < 0) {
- alert('[RGRAPH] Warning: you have a negative bar width. This may be caused by the chart.hmargin being too high or the width of the canvas not being sufficient.');
- }
-
- // If the X axis pos is in the center, we need to half the height
- if (xaxispos == 'center') {
- height /= 2;
- }
-
- /**
- * Determine the start positioning for the bar
- */
- if (xaxispos == 'top') {
- var startY = this.gutterTop;
- var height = Math.abs(height);
-
- } else if (xaxispos == 'center') {
- var startY = this.gutterTop + (this.grapharea / 2) - height;
-
- } else {
- var startY = ca.height - this.gutterBottom - height;
- var height = Math.abs(height);
- }
-
- /**
- * Draw MSIE shadow
- */
- if (RGraph.isOld() && shadow) {
- this.DrawIEShadow([startX, startY, individualBarWidth, height]);
- }
-
- co.strokeRect(startX + groupedMargin, startY, individualBarWidth - (2 * groupedMargin), height);
- co.fillRect(startX + groupedMargin, startY, individualBarWidth - (2 * groupedMargin), height);
- y += height;
-
-
-
- /**
- * Grouped 3D effect
- */
- if (variant == '3d') {
- var prevFillStyle = co.fillStyle;
- var prevStrokeStyle = co.strokeStyle;
-
- // Draw the top side
- co.beginPath();
- co.moveTo(startX, startY);
- co.lineTo(startX + 10, startY - 5);
- co.lineTo(startX + 10 + individualBarWidth, startY - 5);
- co.lineTo(startX + individualBarWidth, startY);
- co.closePath();
-
- co.fill();
- co.stroke();
-
- // Draw the side section
- co.beginPath();
- co.moveTo(startX + individualBarWidth, startY);
- co.lineTo(startX + individualBarWidth + 10, startY - 5);
- co.lineTo(startX + individualBarWidth + 10, startY - 5 + height);
- co.lineTo(startX + individualBarWidth , startY + height);
- co.closePath();
-
- co.fill();
- co.stroke();
-
-
- // Draw the darker top side
- co.fillStyle = 'rgba(255,255,255,0.3)';
- co.beginPath();
- co.moveTo(startX, startY);
- co.lineTo(startX + 10, startY - 5);
- co.lineTo(startX + 10 + individualBarWidth, startY - 5);
- co.lineTo(startX + individualBarWidth, startY);
- co.closePath();
-
- co.fill();
- co.stroke();
-
- // Draw the darker side section
- co.fillStyle = 'rgba(0,0,0,0.4)';
- co.beginPath();
- co.moveTo(startX + individualBarWidth, startY);
- co.lineTo(startX + individualBarWidth + 10, startY - 5);
- co.lineTo(startX + individualBarWidth + 10, startY - 5 + height);
- co.lineTo(startX + individualBarWidth , startY + height);
- co.closePath();
-
- co.fill();
- co.stroke();
-
- co.strokeStyle = prevStrokeStyle;
- co.fillStyle = prevFillStyle;
- }
-
- if (height < 0) {
- height = Math.abs(height);
- startY = startY - height;
- }
-
- this.coords.push([startX + groupedMargin, startY, individualBarWidth - (2 * groupedMargin), height]);
- if (typeof this.coords2[i] == 'undefined') {
- this.coords2[i] = [];
- }
- this.coords2[i].push([startX + groupedMargin, startY, individualBarWidth - (2 * groupedMargin), height]);
-
- // Facilitate shadows going to the left
- if (prop['chart.shadow']) {
- redrawCoords.push([startX + groupedMargin, startY, individualBarWidth - (2 * groupedMargin), height, co.fillStyle]);
- }
-
-
- // This bit draws the text labels that appear above the bars if requested
- if (prop['chart.labels.above']) {
-
- co.strokeStyle = 'rgba(0,0,0,0)';
-
- // Turn off any shadow
- if (shadow) {
- RGraph.NoShadow(this);
- }
-
- var yPos = y - 3;
-
- // Angled above labels
- if (prop['chart.labels.above.angle']) {
- var angle = -45;
- var halign = 'left';
- var valign = 'center';
- } else {
-
- var angle = 0;
- var halign = 'center';
- var valign = 'bottom';
-
- // Account for negative bars
- if (this.data[i][j] < 0 || prop['chart.xaxispos'] == 'top') {
- yPos = startY + height + 6;
- var valign = 'top';
- } else {
- yPos = startY;
- }
- }
-
- // Above labels color
- if (typeof this.properties['chart.labels.above.color'] == 'string') {
- co.fillStyle = prop['chart.labels.above.color'];
- } else {
- co.fillStyle = prop['chart.text.color'];
- }
-
- RGraph.Text2(this, {'font': prop['chart.text.font'],
- 'size': typeof(prop['chart.labels.above.size']) == 'number' ? prop['chart.labels.above.size'] : prop['chart.text.size'] - 3,
- 'x': startX + (individualBarWidth / 2),
- 'y': yPos - 3,
- 'text': RGraph.number_format(this, this.data[i][j].toFixed(prop['chart.labels.above.decimals'])),
- 'halign': halign,
- 'valign': valign,
- 'angle':angle,
- 'tag': 'labels.above'
- });
-
- // Turn any shadow back on
- if (shadow) {
- co.shadowColor = shadowColor;
- co.shadowBlur = shadowBlur;
- co.shadowOffsetX = shadowOffsetX;
- co.shadowOffsetY = shadowOffsetY;
- }
- }
- }
- /**
- * Redraw the bar if shadows are going to the left
- */
- if (redrawCoords.length) {
-
- RGraph.NoShadow(this);
-
- co.lineWidth = prop['chart.linewidth'];
-
- co.beginPath();
- for (var j=0; j<redrawCoords.length; ++j) {
-
- co.fillStyle = redrawCoords[j][4];
- co.strokeStyle = prop['chart.strokecolor'];
-
- co.fillRect(redrawCoords[j][0], redrawCoords[j][1], redrawCoords[j][2], redrawCoords[j][3]);
- co.strokeRect(redrawCoords[j][0], redrawCoords[j][1], redrawCoords[j][2], redrawCoords[j][3]);
- }
- co.fill();
- co.stroke();
-
- redrawCoords = [];
- }
- } else {
- this.coords.push([]);
- }
-
- co.closePath();
- }
-
- /**
- * Turn off any shadow
- */
- RGraph.NoShadow(this);
- }
-
-
-
- /**
- * Draws the labels for the graph
- */
- this.DrawLabels = function ()
- {
- // Variable "caching" so the context can be accessed as a local variable
- var ca = this.canvas;
- var co = this.context;
- var prop = this.properties;
- var context = co;
-
- var text_angle = prop['chart.text.angle'];
- var text_size = prop['chart.text.size'];
- var labels = prop['chart.labels'];
-
-
- // Draw the Y axis labels:
- if (prop['chart.ylabels']) {
- if (prop['chart.xaxispos'] == 'top') this.Drawlabels_top();
- if (prop['chart.xaxispos'] == 'center') this.Drawlabels_center();
- if (prop['chart.xaxispos'] == 'bottom') this.Drawlabels_bottom();
- }
-
- /**
- * The X axis labels
- */
- if (typeof(labels) == 'object' && labels) {
-
- var yOffset = Number(prop['chart.xlabels.offset']);
-
- /**
- * Text angle
- */
- if (prop['chart.text.angle'] != 0) {
- var valign = 'center';
- var halign = 'right';
- var angle = 0 - prop['chart.text.angle'];
- } else {
- var valign = 'top';
- var halign = 'center';
- var angle = 0;
- }
-
- // Draw the X axis labels
- co.fillStyle = prop['chart.text.color'];
-
- // How wide is each bar
- var barWidth = (ca.width - this.gutterRight - this.gutterLeft) / labels.length;
-
- // Reset the xTickGap
- xTickGap = (ca.width - this.gutterRight - this.gutterLeft) / labels.length
-
- // Draw the X tickmarks
- var i=0;
- var font = prop['chart.text.font'];
-
- for (x=this.gutterLeft + (xTickGap / 2); x<=ca.width - this.gutterRight; x+=xTickGap) {
-
- RGraph.Text2(this, {'font': font,
- 'size': text_size,
- 'x': x,
- 'y': prop['chart.xaxispos'] == 'top' ? this.gutterTop - yOffset - 5: (ca.height - this.gutterBottom) + yOffset + 3,
- 'text': String(labels[i++]),
- 'valign': prop['chart.xaxispos'] == 'top' ? 'bottom' : valign,
- 'halign': halign,
- 'tag':'label',
- 'marker':false,
- 'angle':angle,
- 'tag': 'labels'
- });
- }
- }
-
- /**
- * If chart.labels.above.specific is specified, draw them
- */
- if (prop['chart.labels.above.specific']) {
-
- var labels = prop['chart.labels.above.specific'];
-
- for (var i=0; i<this.coords.length; ++i) {
-
- var xaxispos = prop['chart.xaxispos'];
- var coords = this.coords[i];
- var value = this.data_arr[i];
- var valign = (value >=0 && xaxispos != 'top') ? 'bottom' : 'top';
- var halign = 'center';
- var text = labels[i];
-
-
- if (text && text.toString().length > 0) {
- RGraph.Text2(this, {'font': prop['chart.text.font'],
- 'size': prop['chart.labels.above.size'] ? prop['chart.labels.above.size'] : prop['chart.text.size'],
- 'x': coords[0] + (coords[2] / 2),
- 'y': (value >=0 && xaxispos != 'top') ? coords[1] - 5 : coords[1] + coords[3] + 3,
- 'text': String(labels[i]),
- 'valign': valign,
- 'halign': halign,
- 'tag': 'labels.above'
- });
- }
- }
- }
- }
-
-
-
- /**
- * Draws the X axis at the top
- */
- this.Drawlabels_top = function ()
- {
- var ca = this.canvas;
- var co = this.context;
- var prop = this.properties;
-
- co.beginPath();
- co.fillStyle = prop['chart.text.color'];
- co.strokeStyle = 'black';
-
- if (prop['chart.xaxispos'] == 'top') {
-
- var context = co;
- var text_size = prop['chart.text.size'];
- var units_pre = prop['chart.units.pre'];
- var units_post = prop['chart.units.post'];
- var align = prop['chart.yaxispos'] == 'left' ? 'right' : 'left';
- var font = prop['chart.text.font'];
- var numYLabels = prop['chart.ylabels.count'];
- var ymin = prop['chart.ymin'];
-
- if (prop['chart.ylabels.inside'] == true) {
- var xpos = prop['chart.yaxispos'] == 'left' ? this.gutterLeft + 5 : ca.width - this.gutterRight - 5;
- var align = prop['chart.yaxispos'] == 'left' ? 'left' : 'right';
- var boxed = true;
- } else {
- var xpos = prop['chart.yaxispos'] == 'left' ? this.gutterLeft - 5 : ca.width - this.gutterRight + 5;
- var boxed = false;
- }
-
- /**
- * Draw specific Y labels here so that the local variables can be reused
- */
- if (typeof(prop['chart.ylabels.specific']) == 'object' && prop['chart.ylabels.specific']) {
-
- var labels = RGraph.array_reverse(prop['chart.ylabels.specific']);
- var grapharea = ca.height - this.gutterTop - this.gutterBottom;
-
- for (var i=0; i<labels.length; ++i) {
-
- var y = this.gutterTop + (grapharea * (i / labels.length)) + (grapharea / labels.length);
-
- RGraph.Text2(this, {'font': font,
- 'size': text_size,
- 'x': xpos,
- 'y': y,
- 'text': String(labels[i]),
- 'valign': 'center',
- 'halign': align,
- 'bordered':boxed,
- 'tag': 'scale'
- });
- }
-
- return;
- }
-
-
-
-
-
-
-
- /**
- * Draw the scale
- */
- var labels = this.scale2.labels;
- for (var i=0; i<labels.length; ++i) {
- RGraph.Text2(this, {'font': font,
- 'size':text_size,
- 'x':xpos,
- 'y':this.gutterTop + ((this.grapharea / labels.length) * (i + 1)),
- 'text': '-' + labels[i],
- 'valign': 'center',
- 'halign': align,
- 'bordered': boxed,
- 'tag':'scale'});
- }
-
-
-
-
-
-
-
-
- /**
- * Show the minimum value if its not zero
- */
- if (prop['chart.ymin'] != 0 || prop['chart.noxaxis']) {
-
- RGraph.Text2(this, {'font': font,
- 'size': text_size,
- 'x': xpos,
- 'y': this.gutterTop,
- 'text': (this.scale2.min != 0 ? '-' : '') + RGraph.number_format(this,(this.scale2.min.toFixed((prop['chart.scale.decimals']))), units_pre, units_post),
- 'valign': 'center',
- 'halign': align,
- 'bordered': boxed,
- 'tag': 'scale'});
- }
-
- }
-
- co.fill();
- }
-
-
-
- /**
- * Draws the X axis in the middle
- */
- this.Drawlabels_center = function ()
- {
- var ca = this.canvas;
- var co = this.context;
- var prop = this.properties;
-
- var font = prop['chart.text.font'];
- var numYLabels = prop['chart.ylabels.count'];
-
- co.fillStyle = prop['chart.text.color'];
-
- if (prop['chart.xaxispos'] == 'center') {
-
- /**
- * Draw the top labels
- */
- var text_size = prop['chart.text.size'];
- var units_pre = prop['chart.units.pre'];
- var units_post = prop['chart.units.post'];
- var context = co;
- var align = '';
- var xpos = 0;
- var boxed = false;
- var ymin = prop['chart.ymin'];
-
- co.fillStyle = prop['chart.text.color'];
- co.strokeStyle = 'black';
-
- if (prop['chart.ylabels.inside'] == true) {
- var xpos = prop['chart.yaxispos'] == 'left' ? this.gutterLeft + 5 : ca.width - this.gutterRight - 5;
- var align = prop['chart.yaxispos'] == 'left' ? 'left' : 'right';
- var boxed = true;
- } else {
- var xpos = prop['chart.yaxispos'] == 'left' ? this.gutterLeft - 5 : ca.width - this.gutterRight + 5;
- var align = prop['chart.yaxispos'] == 'left' ? 'right' : 'left';
- var boxed = false;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- /**
- * Draw specific Y labels here so that the local variables can be reused
- */
- if (typeof(prop['chart.ylabels.specific']) == 'object' && prop['chart.ylabels.specific']) {
-
- var labels = prop['chart.ylabels.specific'];
- var grapharea = ca.height - this.gutterTop - this.gutterBottom;
-
- // Draw the top halves labels
- for (var i=0; i<labels.length; ++i) {
-
- var y = this.gutterTop + ((grapharea / 2) / (labels.length - 1)) * i;
-
- RGraph.Text2(this, {'font':font,
- 'size':text_size,
- 'x':xpos,
- 'y':y,
- 'text':String(labels[i]),
- 'valign':'center',
- 'halign':align,
- 'bordered':boxed,
- 'tag': 'scale'
- });
- }
-
- // Draw the bottom halves labels
- for (var i=labels.length-1; i>=1; --i) {
-
- var y = this.gutterTop + (grapharea * (i / ((labels.length - 1) * 2) )) + (grapharea / 2);
-
- RG.Text2(this, {'font':font,
- 'size':text_size,
- 'x':xpos,
- 'y':y,
- 'text':String(labels[labels.length - i - 1]),
- 'valign':'center',
- 'halign':align,
- 'bordered':boxed,
- 'tag': 'scale'
- });
- }
-
- return;
- }
-
-
-
-
-
-
-
-
-
-
- /**
- * Draw the top halfs labels
- */
- for (var i=0; i<this.scale2.labels.length; ++i) {
- var y = this.gutterTop + this.halfgrapharea - ((this.halfgrapharea / numYLabels) * (i + 1));
- var text = this.scale2.labels[i];
- RG.Text2(this, {'font':font, 'size':text_size, 'x':xpos, 'y':y, 'text': text, 'valign':'center', 'halign': align, 'bordered': boxed, 'tag':'scale'});
- }
-
- /**
- * Draw the bottom halfs labels
- */
- for (var i=(this.scale2.labels.length - 1); i>=0; --i) {
- var y = this.gutterTop + ((this.halfgrapharea / numYLabels) * (i + 1)) + this.halfgrapharea;
- var text = this.scale2.labels[i];
- RG.Text2(this, {'font':font, 'size':text_size,'x':xpos,'y':y,'text': '-' + text,'valign':'center','halign': align,'bordered': boxed,'tag':'scale'});
- }
-
-
-
-
-
- /**
- * Show the minimum value if its not zero
- */
- if (this.scale2.min != 0) {
- RG.Text2(this, {'font':font,'size':text_size, 'x':xpos, 'y':this.gutterTop + this.halfgrapharea,'text': RGraph.number_format(this,(this.scale2.min.toFixed((prop['chart.scale.decimals']))), units_pre, units_post),'valign':'center', 'valign':'center','halign': align, 'bordered': boxed, 'tag':'scale'});
- }
- }
- }
-
-
-
-
- /**
- * Draws the X axdis at the bottom (the default)
- */
- this.Drawlabels_bottom = function ()
- {
- var co = this.context;
- var ca = this.canvas;
- var prop = this.properties;
-
- var text_size = prop['chart.text.size'];
- var units_pre = prop['chart.units.pre'];
- var units_post = prop['chart.units.post'];
- var context = this.context;
- var align = prop['chart.yaxispos'] == 'left' ? 'right' : 'left';
- var font = prop['chart.text.font'];
- var numYLabels = prop['chart.ylabels.count'];
- var ymin = prop['chart.ymin'];
-
- co.beginPath();
- co.fillStyle = prop['chart.text.color'];
- co.strokeStyle = 'black';
-
- if (prop['chart.ylabels.inside'] == true) {
- var xpos = prop['chart.yaxispos'] == 'left' ? this.gutterLeft + 5 : ca.width - this.gutterRight - 5;
- var align = prop['chart.yaxispos'] == 'left' ? 'left' : 'right';
- var boxed = true;
- } else {
- var xpos = prop['chart.yaxispos'] == 'left' ? this.gutterLeft - 5 : ca.width - this.gutterRight + 5;
- var boxed = false;
- }
-
- /**
- * Draw specific Y labels here so that the local variables can be reused
- */
- if (prop['chart.ylabels.specific'] && typeof(prop['chart.ylabels.specific']) == 'object') {
-
- var labels = prop['chart.ylabels.specific'];
- var grapharea = ca.height - this.gutterTop - this.gutterBottom;
-
- for (var i=0; i<labels.length; ++i) {
- var y = this.gutterTop + (grapharea * (i / (labels.length - 1)));
-
- RGraph.Text2(this, {'font':font,
- 'size':text_size,
- 'x':xpos,
- 'y':y,
- 'text': labels[i],
- 'valign':'center',
- 'halign': align,
- 'bordered': boxed,
- 'tag':'scale'
- });
- }
-
- return;
- }
-
- var gutterTop = this.gutterTop;
- var halfTextHeight = this.halfTextHeight;
- var scale = this.scale;
-
-
- for (var i=0; i<numYLabels; ++i) {
- var text = this.scale2.labels[i];
- RGraph.Text2(this, {'font':font,
- 'size':text_size,
- 'x':xpos,
- 'y':this.gutterTop + this.grapharea - ((this.grapharea / numYLabels) * (i+1)),
- 'text': text,
- 'valign':'center',
- 'halign': align,
- 'bordered': boxed,
- 'tag':'scale'});
- }
-
-
- /**
- * Show the minimum value if its not zero
- */
- if (prop['chart.ymin'] != 0 || prop['chart.noxaxis']) {
- RG.Text2(this, {'font':font,
- 'size':text_size,
- 'x':xpos,
- 'y':ca.height - this.gutterBottom,
- 'text': RG.number_format(this,(this.scale2.min.toFixed((prop['chart.scale.decimals']))), units_pre, units_post),
- 'valign':'center',
- 'halign': align,
- 'bordered': boxed,
- 'tag':'scale'});
- }
-
- co.fill();
- }
-
-
- /**
- * This function is used by MSIE only to manually draw the shadow
- *
- * @param array coords The coords for the bar
- */
- this.DrawIEShadow = function (coords)
- {
- var co = this.context;
- var ca = this.canvas;
- var prop = this.properties;
-
- var prevFillStyle = co.fillStyle;
- var offsetx = prop['chart.shadow.offsetx'];
- var offsety = prop['chart.shadow.offsety'];
-
- co.lineWidth = prop['chart.linewidth'];
- co.fillStyle = prop['chart.shadow.color'];
- co.beginPath();
-
- // Draw shadow here
- co.fillRect(coords[0] + offsetx, coords[1] + offsety, coords[2], coords[3]);
-
- co.fill();
-
- // Change the fillstyle back to what it was
- co.fillStyle = prevFillStyle;
- }
-
-
- /**
- * Not used by the class during creating the graph, but is used by event handlers
- * to get the coordinates (if any) of the selected bar
- *
- * @param object e The event object
- * @param object OPTIONAL You can pass in the bar object instead of the
- * function using "this"
- */
- this.getShape =
- this.getBar = function (e)
- {
- // This facilitates you being able to pass in the bar object as a parameter instead of
- // the function getting it from itself
- var obj = arguments[1] ? arguments[1] : this;
-
- var mouseXY = RGraph.getMouseXY(e);
- var mouseX = mouseXY[0];
- var mouseY = mouseXY[1];
- var canvas = obj.canvas;
- var context = obj.context;
- var coords = obj.coords
- for (var i=0,len=coords.length; i<len; i+=1) {
-
- if (obj.coords[i].length == 0) {
- continue;
- }
- var left = coords[i][0];
- var top = coords[i][1];
- var width = coords[i][2];
- var height = coords[i][3];
- var prop = obj.properties;
-
- if (mouseX >= left && mouseX <= (left + width) && mouseY >= top && mouseY <= (top + height)) {
- if (prop['chart.tooltips']) {
- var tooltip = RGraph.parseTooltipText ? RGraph.parseTooltipText(prop['chart.tooltips'], i) : prop['chart.tooltips'][i];
- }
-
- // Work out the dataset
- var dataset = 0;
- var idx = i;
- while (idx >= (typeof(obj.data[dataset]) == 'object' && obj.data[dataset] ? obj.data[dataset].length : 1)) {
- if (typeof(obj.data[dataset]) == 'number') {
- idx -= 1;
- } else if (obj.data[dataset]) { // Accounts for null being an object
- idx -= obj.data[dataset].length;
- } else {
- idx -= 1;
- }
- dataset++;
- }
- if (typeof(obj.data[dataset]) == 'number') {
- idx = null;
- }
-
-
- return {
- 0: obj, 1: left, 2: top, 3: width, 4: height, 5: i,
- 'object': obj, 'x': left, 'y': top, 'width': width, 'height': height, 'index': i, 'tooltip': tooltip, 'index_adjusted': idx, 'dataset': dataset
- };
- }
- }
-
- return null;
- }
- /**
- * This retrives the bar based on the X coordinate only.
- *
- * @param object e The event object
- * @param object OPTIONAL You can pass in the bar object instead of the
- * function using "this"
- */
- this.getShapeByX = function (e)
- {
- var canvas = e.target;
- var mouseCoords = RGraph.getMouseXY(e);
-
-
- // This facilitates you being able to pass in the bar object as a parameter instead of
- // the function getting it from itself
- var obj = arguments[1] ? arguments[1] : this;
-
-
- /**
- * Loop through the bars determining if the mouse is over a bar
- */
- for (var i=0,len=obj.coords.length; i<len; i++) {
- if (obj.coords[i].length == 0) {
- continue;
- }
- var mouseX = mouseCoords[0];
- var mouseY = mouseCoords[1];
- var left = obj.coords[i][0];
- var top = obj.coords[i][1];
- var width = obj.coords[i][2];
- var height = obj.coords[i][3];
- var prop = obj.properties;
-
- if (mouseX >= left && mouseX <= (left + width)) {
-
- if (prop['chart.tooltips']) {
- var tooltip = RGraph.parseTooltipText ? RGraph.parseTooltipText(prop['chart.tooltips'], i) : prop['chart.tooltips'][i];
- }
-
-
- return {
- 0: obj, 1: left, 2: top, 3: width, 4: height, 5: i,
- 'object': obj, 'x': left, 'y': top, 'width': width, 'height': height, 'index': i, 'tooltip': tooltip
- };
- }
- }
-
- return null;
- }
-
-
- /**
- * When you click on the chart, this method can return the Y value at that point. It works for any point on the
- * chart (that is inside the gutters) - not just points within the Bars.
- *
- * EITHER:
- *
- * @param object arg The event object
- *
- * OR:
- *
- * @param object arg A two element array containing the X and Y coordinates
- */
- this.getValue = function (arg)
- {
- var co = this.context;
- var ca = this.canvas;
- var prop = this.properties;
-
- if (arg.length == 2) {
- var mouseX = arg[0];
- var mouseY = arg[1];
- } else {
- var mouseCoords = RGraph.getMouseXY(arg);
- var mouseX = mouseCoords[0];
- var mouseY = mouseCoords[1];
- }
-
- if ( mouseY < prop['chart.gutter.top']
- || mouseY > (ca.height - prop['chart.gutter.bottom'])
- || mouseX < prop['chart.gutter.left']
- || mouseX > (ca.width - prop['chart.gutter.right'])
- ) {
- return null;
- }
-
- if (prop['chart.xaxispos'] == 'center') {
- var value = (((this.grapharea / 2) - (mouseY - prop['chart.gutter.top'])) / this.grapharea) * (this.scale2.max - this.scale2.min)
- value *= 2;
-
- if (value >= 0) {
- value += this.scale2.min;
- } else {
- value -= this.scale2.min;
- }
-
- } else if (prop['chart.xaxispos'] == 'top') {
- var value = ((this.grapharea - (mouseY - prop['chart.gutter.top'])) / this.grapharea) * (this.scale2.max - this.scale2.min)
- value = this.scale2.max - value;
- value = Math.abs(value) * -1;
- } else {
- var value = ((this.grapharea - (mouseY - prop['chart.gutter.top'])) / this.grapharea) * (this.scale2.max - this.scale2.min)
- value += this.scale2.min;
- }
-
- return value;
- }
-
-
- /**
- * This function can be used when the canvas is clicked on (or similar - depending on the event)
- * to retrieve the relevant Y coordinate for a particular value.
- *
- * @param int value The value to get the Y coordinate for
- */
- this.getYCoord = function (value)
- {
- if (value > this.scale2.max) {
- return null;
- }
-
- var co = this.context;
- var ca = this.canvas;
- var prop = this.properties;
-
- var y;
- var xaxispos = prop['chart.xaxispos'];
-
- if (xaxispos == 'top') {
-
- // Account for negative numbers
- if (value < 0) {
- value = Math.abs(value);
- }
-
- y = ((value - this.scale2.min) / (this.scale2.max - this.scale2.min)) * this.grapharea;
- y = y + this.gutterTop
-
- } else if (xaxispos == 'center') {
-
- y = ((value - this.scale2.min) / (this.scale2.max - this.scale2.min)) * (this.grapharea / 2);
- y = (this.grapharea / 2) - y;
- y += this.gutterTop;
-
- } else {
-
- if (value < this.scale2.min) {
- value = this.scale2.min;
- }
-
- y = ((value - this.scale2.min) / (this.scale2.max - this.scale2.min)) * this.grapharea;
-
- y = ca.height - this.gutterBottom - y;
- }
-
- return y;
- }
-
-
-
- /**
- * Each object type has its own Highlight() function which highlights the appropriate shape
- *
- * @param object shape The shape to highlight
- */
- this.Highlight = function (shape)
- {
- // Add the new highlight
- RGraph.Highlight.Rect(this, shape);
- }
-
-
-
- /**
- * The getObjectByXY() worker method
- */
- this.getObjectByXY = function (e)
- {
- var ca = this.canvas;
- var prop = this.properties;
-
- var mouseXY = RGraph.getMouseXY(e);
-
- if (
- mouseXY[0] >= prop['chart.gutter.left']
- && mouseXY[0] <= (ca.width - prop['chart.gutter.right'])
- && mouseXY[1] >= prop['chart.gutter.top']
- && mouseXY[1] <= (ca.height - prop['chart.gutter.bottom'])
- ) {
-
- return this;
- }
- }
- /**
- * This method handles the adjusting calculation for when the mouse is moved
- *
- * @param object e The event object
- */
- this.Adjusting_mousemove = function (e)
- {
- /**
- * Handle adjusting for the Bar
- */
- if (prop['chart.adjustable'] && RG.Registry.Get('chart.adjusting') && RG.Registry.Get('chart.adjusting').uid == this.uid) {
-
- // Rounding the value to the given number of decimals make the chart step
- var value = Number(this.getValue(e));
- var shape = this.getShapeByX(e);
- if (shape) {
- RG.Registry.Set('chart.adjusting.shape', shape);
- if (this.stackedOrGrouped && prop['chart.grouping'] == 'grouped') {
- var indexes = RG.sequentialIndexToGrouped(shape['index'], this.data);
- if (typeof this.data[indexes[0]] == 'number') {
- this.data[indexes[0]] = Number(value);
- } else if (!RG.is_null(this.data[indexes[0]])) {
- this.data[indexes[0]][indexes[1]] = Number(value);
- }
- } else if (typeof this.data[shape['index']] == 'number') {
- this.data[shape['index']] = Number(value);
- }
-
- RG.RedrawCanvas(e.target);
-
- RG.FireCustomEvent(this, 'onadjust');
- }
- }
- }
- /**
- * This function positions a tooltip when it is displayed
- *
- * @param obj object The chart object
- * @param int x The X coordinate specified for the tooltip
- * @param int y The Y coordinate specified for the tooltip
- * @param objec tooltip The tooltips DIV element
- */
- this.positionTooltip = function (obj, x, y, tooltip, idx)
- {
- var prop = obj.properties;
- var coordX = obj.coords[tooltip.__index__][0];
- var coordY = obj.coords[tooltip.__index__][1];
- var coordW = obj.coords[tooltip.__index__][2];
- var coordH = obj.coords[tooltip.__index__][3];
- var canvasXY = RGraph.getCanvasXY(obj.canvas);
- var gutterLeft = prop['chart.gutter.left'];
- var gutterTop = prop['chart.gutter.top'];
- var width = tooltip.offsetWidth;
- var height = tooltip.offsetHeight;
- var value = obj.data_arr[tooltip.__index__];
-
-
- // Set the top position
- tooltip.style.left = 0;
- tooltip.style.top = canvasXY[1] + coordY - height - 7 + 'px';
-
- /**
- * If the tooltip is for a negative value - position it underneath the bar
- */
- if (value < 0) {
- tooltip.style.top = canvasXY[1] + coordY + coordH + 7 + 'px';
- }
-
-
- // By default any overflow is hidden
- tooltip.style.overflow = '';
-
- // Inverted arrow
- // data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAFCAMAAACkeOZkAAAAK3RFWHRDcmVhdGlvbiBUaW1lAFNhdCA2IE9jdCAyMDEyIDEyOjQ5OjMyIC0wMDAw2S1RlgAAAAd0SU1FB9wKBgszM4Ed2k4AAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAEZ0FNQQAAsY8L/GEFAAAACVBMVEX/AAC9vb3//+92Pom0AAAAAXRSTlMAQObYZgAAAB1JREFUeNpjYAABRgY4YGRiRDCZYBwQE8qBMEEcAANCACqByy1sAAAAAElFTkSuQmCC
-
- // The arrow
- var img = new Image();
- img.style.position = 'absolute';
- img.id = '__rgraph_tooltip_pointer__';
- if (value >= 0) {
- img.src = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAFCAYAAACjKgd3AAAARUlEQVQYV2NkQAN79+797+RkhC4M5+/bd47B2dmZEVkBCgcmgcsgbAaA9GA1BCSBbhAuA/AagmwQPgMIGgIzCD0M0AMMAEFVIAa6UQgcAAAAAElFTkSuQmCC';
- img.style.top = (tooltip.offsetHeight - 2) + 'px';
- } else {
- img.src = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAFCAMAAACkeOZkAAAAK3RFWHRDcmVhdGlvbiBUaW1lAFNhdCA2IE9jdCAyMDEyIDEyOjQ5OjMyIC0wMDAw2S1RlgAAAAd0SU1FB9wKBgszM4Ed2k4AAAAJcEhZcwAACxIAAAsSAdLdfvwAAAAEZ0FNQQAAsY8L/GEFAAAACVBMVEX/AAC9vb3//+92Pom0AAAAAXRSTlMAQObYZgAAAB1JREFUeNpjYAABRgY4YGRiRDCZYBwQE8qBMEEcAANCACqByy1sAAAAAElFTkSuQmCC';
- img.style.top = '-5px';
- }
-
- tooltip.appendChild(img);
-
- // Reposition the tooltip if at the edges:
-
- // LEFT edge
- if ((canvasXY[0] + coordX + (coordW / 2) - (width / 2)) < 10) {
- tooltip.style.left = (canvasXY[0] + coordX - (width * 0.1)) + (coordW / 2) + 'px';
- img.style.left = ((width * 0.1) - 8.5) + 'px';
-
- // RIGHT edge
- } else if ((canvasXY[0] + coordX + (width / 2)) > document.body.offsetWidth) {
- tooltip.style.left = canvasXY[0] + coordX - (width * 0.9) + (coordW / 2) + 'px';
- img.style.left = ((width * 0.9) - 8.5) + 'px';
-
- // Default positioning - CENTERED
- } else {
- tooltip.style.left = (canvasXY[0] + coordX + (coordW / 2) - (width * 0.5)) + 'px';
- img.style.left = ((width * 0.5) - 8.5) + 'px';
- }
- }
- /**
- * This allows for easy specification of gradients
- */
- this.parseColors = function ()
- {
- // Set this as a local variable
- var prop = this.properties;
-
- // chart.colors
- var colors = prop['chart.colors'];
- if (colors) {
- for (var i=0; i<colors.length; ++i) {
- colors[i] = this.parseSingleColorForGradient(colors[i]);
- }
- }
-
- // chart.key.colors
- var colors = prop['chart.key.colors'];
- if (colors) {
- for (var i=0; i<colors.length; ++i) {
- colors[i] = this.parseSingleColorForGradient(colors[i]);
- }
- }
-
- prop['chart.crosshairs.color'] = this.parseSingleColorForGradient(prop['chart.crosshairs.color']);
- prop['chart.highlight.stroke'] = this.parseSingleColorForGradient(prop['chart.highlight.stroke']);
- prop['chart.highlight.fill'] = this.parseSingleColorForGradient(prop['chart.highlight.fill']);
- prop['chart.text.color'] = this.parseSingleColorForGradient(prop['chart.text.color']);
- prop['chart.background.barcolor1'] = this.parseSingleColorForGradient(prop['chart.background.barcolor1']);
- prop['chart.background.barcolor2'] = this.parseSingleColorForGradient(prop['chart.background.barcolor2']);
- prop['chart.background.grid.color'] = this.parseSingleColorForGradient(prop['chart.background.grid.color']);
- prop['chart.strokecolor'] = this.parseSingleColorForGradient(prop['chart.strokecolor']);
- prop['chart.axis.color'] = this.parseSingleColorForGradient(prop['chart.axis.color']);
- }
-
-
-
- /**
- * This parses a single color value
- */
- this.parseSingleColorForGradient = function (color)
- {
- if (!color || typeof(color) != 'string') {
- return color;
- }
-
- if (color.match(/^gradient\((.*)\)$/i)) {
-
- var parts = RegExp.$1.split(':');
-
- // Create the gradient
- var grad = co.createLinearGradient(0,ca.height - prop['chart.gutter.bottom'], 0, prop['chart.gutter.top']);
-
- var diff = 1 / (parts.length - 1);
-
- grad.addColorStop(0, RG.trim(parts[0]));
-
- for (var j=1,len=parts.length; j<len; ++j) {
- grad.addColorStop(j * diff, RGraph.trim(parts[j]));
- }
- }
-
- return grad ? grad : color;
- }
-
-
-
- this.DrawBevel = function ()
- {
- var coords = this.coords;
- var coords2 = this.coords2;
-
- var prop = this.properties;
- var co = this.context;
- var ca = this.canvas;
-
- if (prop['chart.grouping'] == 'stacked') {
- for (var i=0; i<coords2.length; ++i) {
- if (coords2[i] && coords2[i][0] && coords2[i][0][0]) {
-
- var x = coords2[i][0][0];
- var y = coords2[i][0][1];
- var w = coords2[i][0][2];
-
- var arr = [];
- for (var j=0; j<coords2[i].length; ++j) {
- arr.push(coords2[i][j][3]);
- }
- var h = RGraph.array_sum(arr);
-
-
- co.save();
-
- co.strokeStyle = 'black';
-
- // Clip to the rect
- co.beginPath();
- co.rect(x, y, w, h);
- co.clip();
-
- // Add the shadow
- co.shadowColor = 'black';
- co.shadowOffsetX = 0;
- co.shadowOffsetY = 0;
- co.shadowBlur = 20;
-
- co.beginPath();
- co.rect(x - 3, y - 3, w + 6, h + 100);
- co.lineWidth = 5;
- co.stroke();
- co.restore();
- }
- }
- } else {
-
- for (var i=0; i<coords.length; ++i) {
- if (coords[i]) {
-
- var x = coords[i][0];
- var y = coords[i][1];
- var w = coords[i][2];
- var h = coords[i][3];
-
- var xaxispos = prop['chart.xaxispos'];
- var xaxis_ycoord = ((ca.height - this.gutterTop - this.gutterBottom) / 2) + this.gutterTop;
-
-
- co.save();
-
- co.strokeStyle = 'black';
-
- // Clip to the rect
- co.beginPath();
- co.rect(x, y, w, h);
-
- co.clip();
-
- // Add the shadow
- co.shadowColor = 'black';
- co.shadowOffsetX = 0;
- co.shadowOffsetY = 0;
- co.shadowBlur = 20;
-
- if (xaxispos == 'top' || (xaxispos == 'center' && (y + h) > xaxis_ycoord)) {
- y = y - 100;
- h = h + 100;
- } else {
- y = y;
- h = h + 100;
- }
-
- co.beginPath();
- co.rect(x - 3, y - 3, w + 6, h + 6);
- co.lineWidth = 5;
- co.stroke();
- co.restore();
- }
- }
- }
- }
- /**
- * This function handles highlighting an entire data-series for the interactive
- * key
- *
- * @param int index The index of the data series to be highlighted
- */
- this.interactiveKeyHighlight = function (index)
- {
- this.coords2.forEach(function (value, idx, arr)
- {
- if (typeof value[index] == 'object' && value[index]) {
- var x = value[index][0]
- var y = value[index][1]
- var w = value[index][2]
- var h = value[index][3]
-
- co.fillStyle = prop['chart.key.interactive.highlight.chart.fill'];
- co.strokeStyle = prop['chart.key.interactive.highlight.chart.stroke'];
- co.lineWidth = 2;
- co.fillRect(x, y, w, h);
- co.strokeRect(x, y, w, h);
- }
- });
- }
- /**
- * Register the object
- */
- RGraph.Register(this);
- }
- /*********************************************************************************************************
- * This is the combined bar and Line class which makes creating bar/line combo charts a little bit easier *
- /*********************************************************************************************************/
- RGraph.CombinedChart = function ()
- {
- /**
- * Create a default empty array for the objects
- */
- this.objects = [];
-
- var objects = arguments;
- if (RGraph.is_array(arguments[0])) {
- objects = arguments[0];
- }
- for (var i=0; i<objects.length; ++i) {
- this.objects[i] = objects[i];
- /**
- * Set the Line chart gutters to match the Bar chart gutters
- */
- this.objects[i].Set('chart.gutter.left', this.objects[0].Get('chart.gutter.left'));
- this.objects[i].Set('chart.gutter.right', this.objects[0].Get('chart.gutter.right'));
- this.objects[i].Set('chart.gutter.top', this.objects[0].Get('chart.gutter.top'));
- this.objects[i].Set('chart.gutter.bottom', this.objects[0].Get('chart.gutter.bottom'));
- if (this.objects[i].type == 'line') {
-
- /**
- * Set the line chart hmargin
- */
- this.objects[i].Set('chart.hmargin', ((this.objects[0].canvas.width - this.objects[0].Get('chart.gutter.right') - this.objects[0].Get('chart.gutter.left')) / this.objects[0].data.length) / 2 );
-
-
- /**
- * No labels, axes or grid on the Line chart
- */
- this.objects[i].Set('chart.noaxes', true);
- this.objects[i].Set('chart.background.grid', false);
- this.objects[i].Set('chart.ylabels', false);
- }
- /**
- * Resizing
- */
- if (this.objects[i].Get('chart.resizable')) {
- var resizable_object = this.objects[i];
- }
- }
- /**
- * Resizing
- */
- if (resizable_object) {
- /**
- * This recalculates the Line chart hmargin when the chart is resized
- */
- function myOnresizebeforedraw (obj)
- {
- var gutterLeft = obj.Get('chart.gutter.left');
- var gutterRight = obj.Get('chart.gutter.right');
-
- obj.Set('chart.hmargin', (obj.canvas.width - gutterLeft - gutterRight) / (obj.original_data[0].length * 2));
- }
- RGraph.AddCustomEventListener(resizable_object,
- 'onresizebeforedraw',
- myOnresizebeforedraw);
- }
- }
- /**
- * The Add method can be used to add methods to the CombinedChart object.
- */
- RGraph.CombinedChart.prototype.Add = function (obj)
- {
- this.objects.push(obj);
- }
-
- /**
- * The Draw method goes through all of the objects drawing them (sequentially)
- */
- RGraph.CombinedChart.prototype.Draw = function ()
- {
- for (var i=0; i<this.objects.length; ++i) {
- if (typeof(arguments[i]) == 'function') {
- arguments[i](this.objects[i]);
- } else {
- this.objects[i].Draw();
- }
- }
- }
|