Example #1
0
        internal string GetHtmlTable3D()
        {
            // Shaon
            var tables = _model.GetTableInfoCollection(
                _model.TableNames,
                _config.RowInterpolation,
                _config.ColumnInterpolation);

            return(PlotChart3D.CreateSurfaceHTML(CONSTANTS.SURFACE_MAP_FILE, tables));
        }
Example #2
0
        internal void DrawTables3D()
        {
            var tables = _model.GetTableInfoCollection(
                _model.TableNames,
                _config.RowInterpolation,
                _config.ColumnInterpolation);

            _controller.UpdateSheetWithTables(
                tables,
                _config.OutputSheetName,
                _config.MaximumItemsPerRow,
                true);
            PlotChart3D.CreateSurfaceHTML(CONSTANTS.SURFACE_MAP_FILE, tables);
        }