選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

28 行
432B

  1. HTMLWidgets.widget({
  2. name: 'frappeChart',
  3. type: 'output',
  4. factory: function(el, width, height) {
  5. // TODO: define shared variables for this instance
  6. return {
  7. renderValue: function(x) {
  8. // TODO: code to render the widget, e.g.
  9. el.innerText = x.message;
  10. },
  11. resize: function(width, height) {
  12. // TODO: code to re-render the widget with a new size
  13. }
  14. };
  15. }
  16. });