Skip to content

issues with xFormat and yFormat #85

@hishoss

Description

@hishoss

xFormat and yFormat seem to have no effect on a graph widget.

in my widgets.py I have:
class MyGraph(GraphWidget):
title = 'My Graph'
def get_data(self):
return [{'x': x, 'y': x} for x in range(5)]

then in dashing-config.js:

employers.addWidget('MyGraph', 'Graph', {
color: 'black',
scope: {
xFormat(n) {
return '(' + n + ')';
},
yFormat(n) {
return '(' + n + ')';
},
},
getData: function () {
var self = this;
Dashing.utils.get('myGraph', function(data) {
$.extend(self.scope, data, {
title: 'Test Graph!',
properties: {
renderer: 'bar',
padding: {
top: 0.1,
right: 0.1
}
},
});
});
},
interval: 2000
});

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions