Jump to content
Software FX Community

pbodavula

Members
  • Posts

    6
  • Joined

  • Last visited

Posts posted by pbodavula

  1. Hi,

    When some specific data is mapped to horizontal gauge chart by setting scale min, max, sections and indicators, The values are not showing up in some cases.

    Scale Min : -10547.8, Scale Max : 1683180.4, Indicator 1: 4725.8

    Section min: -5489.2, Section max: 38428.6, Indicator 2: 4456.8

    Scale min, max and indicator1 is set to horizontal alignment and to position top.

    Section min, max and indicator2 is set to horizontal alignment and to position bottom.

    The values will overlap each other if they show up, but completely not showing the labels. The markers and indicators are showing without displaying the labels.

    Please let me know if there is any fix for this.

    Thanks

    Padmaja

     

     

     

  2. Hi,

    I am using below code to set section properties for horizontal gauge with trial version.

     double trcMin = this.ParseReportDataObject(metricsLookup["XXX"], "Min");

    double trcMax = this.ParseReportDataObject(metricsLookup["XXX"], "Max");if (!trcMin.Equals(double.NaN) && !trcMax.Equals(double.NaN) && trcMin != trcMax)

    {

    this.horizontalGauge.Scales[0].Sections[0].Min = trcMin;

    this.horizontalGauge.Scales[0].Sections[0].Max = trcMax;this.horizontalGauge.ToolTip = this.horizontalGaugeTRC.ToolTip + string.Format(XXX, groupByName, trcMin, trcMax);

    }

    else if (trcMin == trcMax)

    {

    this.horizontalGauge.MainScale.Sections[0].Visible = false;this.horizontalGauge.ToolTip = this.horizontalGaugeTRC.ToolTip + string.Format(FACTOR_LEVEL_TOOLTIP, groupByName, trcMin, trcMax);

    }

    else

    {

    this.horizontalGaugeTRC.MainScale.Sections[0].Visible = false;

    }

     My problem here is even when min and max are same, though i set sections[0] visible property to false, the section is showing up in the horizontal gauge.

    Please let me know is there any fix for this.

    Thanks

    Padmaja 

     

     

×
×
  • Create New...