Deltakosh 7 سال پیش
والد
کامیت
2d2b421e86
2فایلهای تغییر یافته به همراه5 افزوده شده و 1 حذف شده
  1. 4 1
      gui/src/3D/charting/chart.ts
  2. 1 0
      gui/src/3D/charting/dataSeries.ts

+ 4 - 1
gui/src/3D/charting/chart.ts

@@ -77,7 +77,10 @@ export abstract class Chart {
         this._rootNode = new TransformNode(name, scene);
         this._rootNode = new TransformNode(name, scene);
     }
     }
 
 
-    /** Force the graph to redraw itself */
+    /** 
+     * Force the graph to redraw itself 
+     * @returns the current BarGraph
+    */
     public abstract refresh(): Chart;
     public abstract refresh(): Chart;
 
 
     protected _clean(): void {
     protected _clean(): void {

+ 1 - 0
gui/src/3D/charting/dataSeries.ts

@@ -65,6 +65,7 @@ export class DataSeries {
 
 
     /**
     /**
      * Create a new DataSeries containing testing values
      * Create a new DataSeries containing testing values
+     * @returns the new DataSeries
      */
      */
     public static CreateFakeData(): DataSeries {
     public static CreateFakeData(): DataSeries {
         var series = new DataSeries();
         var series = new DataSeries();