commit/galaxy-central: carlfeberhard: Fix: add missing js model to scatterplot
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/08f389432f68/ Changeset: 08f389432f68 User: carlfeberhard Date: 2014-03-20 21:34:54 Summary: Fix: add missing js model to scatterplot Affected #: 1 file diff -r 8fb3637b9655a55cc54e1e5fd872bf0f9b9a48c6 -r 08f389432f6876a5af1ad54ef2f25e4d06310999 config/plugins/visualizations/scatterplot/src/scatterplot-model.js --- /dev/null +++ b/config/plugins/visualizations/scatterplot/src/scatterplot-model.js @@ -0,0 +1,39 @@ +var ScatterplotModel = Visualization.extend({ + + defaults : { + type : 'scatterplot', + + config : { + // shouldn't be needed for properly saved splots - also often incorrect + //xColumn : 0, + //yColumn : 1, + + pagination : { + currPage : 0, + perPage : 3000 + }, + + // graph style + width : 400, + height : 400, + + margin : { + top : 16, + right : 16, + bottom : 40, + left : 54 + }, + + xTicks : 10, + xLabel : 'X', + yTicks : 10, + yLabel : 'Y', + + datapointSize : 4, + animDuration : 500, + + scale : 1, + translate : [ 0, 0 ] + } + } +}); Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org