You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* GrafConfig is the configuration class that is to be injected into the Graf class
* it does not do anything special!
*
* @class GrafConfig
* @param {Point []} points the (x,y) array of positions for the current graph
* @param {string} xDescription the title for the x axis to be displayed
* @param {string} yDescription the title for the y axis to be displayed
* @param {string} title the title for the graph that will be displayed at the top
* @param { }
*/
let GrafConfig = function (points, xDescription, yDescription, title) {}
/* this line here you can press ctrl+. after new GrafConfig */
var grafConf = new GrafConfig(graphBucket, "Years old", "daily Income", "age vs income chart");
you can copy my code from above to start, simply use the function and on the definition press ctrl+. two times to get the JSDoc information
my question is, if you get a really really long description can we get the wrapping to work nicer? currently it will just break it off in the middle rather then expanding out and wrap in horrible places. if you view my image where the red line is, it should concat
I think I've seen similar issues open but I haven't seen this exact problem open yet.
Reproduces without extensions: Yes/No
The text was updated successfully, but these errors were encountered:
We currently display suggestion documentation as plaintext. #11877 tracks support for displaying markdown documentation content which would fix this issue
Steps to Reproduce:
my question is, if you get a really really long description can we get the wrapping to work nicer? currently it will just break it off in the middle rather then expanding out and wrap in horrible places. if you view my image where the red line is, it should concat
I think I've seen similar issues open but I haven't seen this exact problem open yet.
Reproduces without extensions: Yes/No
The text was updated successfully, but these errors were encountered: