Giter VIP home page Giter VIP logo

flot-axislabels's People

Contributors

xuanluo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

flot-axislabels's Issues

Bottom edge of text is cut off on x-axis

With just an axis label on the x-axis the descenders are cut off. For instance with a label "category", the bottom of the 'g' and 'y' are cut off.

OS: Linux (Ubuntu 10.04)
Browsers: Chrome 6.0.472.63 and Firefox 3.6.10

Bad interaction with jquery.flot.navigate.js

If you use jquery.flot.navigate to allow people to drag/zoom around the graph, every time the graph is repainted flot-axislabels "steals" more space from the left. After a few interactions the graph is tiny.

flot AxisLabels + flot Interactive causes chart to pan off canvas

Hello,

I've been using the optional Interactive plugin for flot and today I added AxisLabels. To my dismay, now click+drag on the chart causes it to pan off the canvas. Commenting out <script src="jquery.flot.axislabels.js"></script> causes the chart to pan/zoom normally.

In the screenshot below, the whitespace between the axisLabels and the axisTicks is from panning the chart via click+drag:

flot pan with axislabels

The chart and axis labels zoom out and pan off the top-right corner of the canvas no matter the direction dragged.

Problems on IE

Hi,

Firstly, really great job on the plugin! was fighting with myself on how to get it done and found your plugin which solved my horrors :)

When combining flot axis properties (min, max etc) on FF & Chrome the axis labels are fine, on IE8 (compatibility on/off) the error of unsupported property comes up.

Thanks,
R.

Erroneous label offset for Y axis.

Error at line 100: y = plot.getPlotOffset().top + plot.height()/2 - width/2;
Fix for line 100: y = plot.getPlotOffset().top + plot.height()/2 + width/2;

Y-Axis Label gets cutoff on the left side when axisLabelUseCanvas is true/active

I found a temporary hardcoded solution to this and wanted to share:
There are 2 lines of code, and they are delimited by |* *|

/*
Axis Labels Plugin for flot. :P
Released under the GPLv3 license by Xuan Luo, September 2010.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

*/
(function ($) {
var options = { };

function init(plot) {
    // This is kind of a hack. There are no hooks in Flot between
    // the creation and measuring of the ticks (setTicks, measureTickLabels
    // in setupGrid() ) and the drawing of the ticks and plot box
    // (insertAxisLabels in setupGrid() ).
    //
    // Therefore, we use a trick where we run the draw routine twice:
    // the first time to get the tick measurements, so that we can change
    // them, and then have it draw it again.
    var secondPass = false;
    plot.hooks.draw.push(function (plot, ctx) {
        if (!secondPass) {
            // MEASURE AND SET OPTIONS
            $.each(plot.getAxes(), function(axisName, axis) {
                var opts = axis.options // Flot 0.7
                    || plot.getOptions()[axisName]; // Flot 0.6
                if (!opts || !opts.axisLabel)
                    return;

                var w, h;
                if (opts.axisLabelUseCanvas != false)
                    opts.axisLabelUseCanvas = true;

                if (opts.axisLabelUseCanvas) {
                    // canvas text
                    if (!opts.axisLabelFontSizePixels)
                        opts.axisLabelFontSizePixels = 14;
                    if (!opts.axisLabelFontFamily)
                        opts.axisLabelFontFamily = 'sans-serif';
                    // since we currently always display x as horiz.
                    // and y as vertical, we only care about the height
                    |*w = opts.axisLabelFontSizePixels + 3; *|
                    h = opts.axisLabelFontSizePixels;

                } else {
                    // HTML text
                    var elem = $('<div class="axisLabels" style="position:absolute;">' + opts.axisLabel + '</div>');
                    plot.getPlaceholder().append(elem);
                    w = elem.outerWidth(true);
                    h = elem.outerHeight(true);
                    elem.remove();
                }

                if (axisName.charAt(0) == 'x')
                    axis.labelHeight += h;
                else
                    axis.labelWidth += w;
                opts.labelHeight = axis.labelHeight;
                opts.labelWidth = axis.labelWidth;
            });
            // re-draw with new label widths and heights
            secondPass = true;
            plot.setupGrid();
            plot.draw();


        } else {
            // DRAW
            $.each(plot.getAxes(), function(axisName, axis) {
                var opts = axis.options // Flot 0.7
                    || plot.getOptions()[axisName]; // Flot 0.6
                if (!opts || !opts.axisLabel)
                    return;

                if (opts.axisLabelUseCanvas) {
                    // canvas text
                    var ctx = plot.getCanvas().getContext('2d');
                    ctx.save();
                    ctx.font = opts.axisLabelFontSizePixels + 'px ' +
                            opts.axisLabelFontFamily;
                    var width = ctx.measureText(opts.axisLabel).width;
                    var height = opts.axisLabelFontSizePixels;
                    var x, y;
                    if (axisName.charAt(0) == 'x') {
                        x = plot.getPlotOffset().left + plot.width()/2 - width/2;
                        y = plot.getCanvas().height;
                    } else {
                        |*height += 3;*|
                        x = height * 0.72;
                        y = plot.getPlotOffset().top + plot.height()/2 - width/2;
                    }
                    ctx.translate(x, y);
                    ctx.rotate((axisName.charAt(0) == 'x') ? 0 : -Math.PI/2);
                    ctx.fillText(opts.axisLabel, 0, 0);
                    ctx.restore();

                } else {
                    // HTML text
                    plot.getPlaceholder().find('#' + axisName + 'Label').remove();
                    var elem = $('<div id="' + axisName + 'Label" " class="axisLabels" style="position:absolute;">' + opts.axisLabel + '</div>');
                    if (axisName.charAt(0) == 'x') {
                        elem.css('left', plot.getPlotOffset().left + plot.width()/2 - elem.outerWidth()/2 + 'px');
                        elem.css('bottom', '0px');
                    } else {
                        elem.css('top', plot.getPlotOffset().top + plot.height()/2 - elem.outerHeight()/2 + 'px');
                        elem.css('left', '0px');
                    }
                    plot.getPlaceholder().append(elem);
                }
            });
            secondPass = false;
        }
    });
}



$.plot.plugins.push({
    init: init,
    options: options,
    name: 'axisLabels',
    version: '1.0'
});

})(jQuery);

Label Color

I know if probably not too complex, but how do you go to change the color of the label? I assume it is under the $.plot() function on the secondPass but I am not familiar with canvas so I don't know how to do it. Do you mind explaining a bit?

Thanks.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.