Пример #1
0
        /// <summary>
        /// Setup
        /// </summary>
        /// <param name="v"></param>

        public void Setup(
            VisualMsx v,
            TrellisMsx t)
        {
            InSetup = true;
            V       = v;
            T       = t;

            if (T.TrellisMode == TrellisModeMsx.RowsColumns)
            {
                TrellisByRowsAndCols.Checked = true;
            }
            else
            {
                TrellisByPanels.Checked = true;
            }

            //TrellisColumnSelector.Setup(T.BaseQuery, T.TrellisColQc);
            //TrellisRowSelector.Setup(T.BaseQuery, T.TrellisRowQc);
            //TrellisPageSelector.Setup(T.BaseQuery, T.TrellisPageQc);

            //TrellisFlowBySelector.Setup(T.BaseQuery, T.TrellisFlowQc);

            TrellisManualLayout.Checked = T.ManualLayout;
            SetTrellisManualLayoutEnableds();
            TrellisMaxRows.Text = T.ManualRowCount.ToString();
            TrellisMaxCols.Text = T.ManualColumnCount.ToString();

            //ShowAxesTitles.Checked = T.ShowAxesTitles;
            //ShowAxesScaleLabels.Checked = T.ShowAxesScaleLabels;


            InSetup = false;
        }
Пример #2
0
 public ScatterPlotPropertiesDialog()
 {
     InitializeComponent();
     Mobius.SpotfireDocument.TrellisMsx tmsx = new TrellisMsx();
 }