コード例 #1
0
        //internal void DrawImage(string imageLocation)
        //{
        //    _controller.UpdateSheetWithImage(
        //       //_config.OutputSheetName,
        //       imageLocation
        //        );
        //}

        internal string GetHtmlTable()
        {
            // Shaon
            var tables = _model.GetTableInfoCollection(
                _model.TableNames,
                _config.RowInterpolation,
                _config.ColumnInterpolation);

            return(PlotChart.CreateSurfaceHTML(CONSTANTS.CONTOUR_MAP_FILE, tables));
        }
コード例 #2
0
        internal void DrawTables()
        {
            var tables = _model.GetTableInfoCollection(
                _model.TableNames,
                _config.RowInterpolation,
                _config.ColumnInterpolation);

            _controller.UpdateSheetWithTables(
                tables,
                _config.OutputSheetName,
                _config.MaximumItemsPerRow,
                true);
            PlotChart.CreateSurfaceHTML(CONSTANTS.CONTOUR_MAP_FILE, tables);
        }