Search code examples
jqueryjchartfx

Removing title box from jchartfx chart using jquery


I am currently using jchartfx to render some charts, my problem is I cannot find any way to remove the very large title created for each graph.

$("#sales").chart({
        axisY : {
            min : 0,
            max : salesMax,
        },
        dataValues : items,
            titles : [ {
                        text : ""
            } ]
});

If I leave the string empty as in the example above, I get a default text instead. I must do this jquery-wise.


Solution

  • I ended up switching over from jquery to Javascript, this library is not supported enough for jquery.