SfChart indicator change color

Hii,

i wanted to know the second secondary axis variable name to change the color the grid-line  for "macd" and "accumulation distribution " indicators .

i have attached an image below for reference.

Thank you in advance,
Harshul Jain

Attachment: Sfchart_ce751e0c.zip

1 Reply

DS Durgadevi Selvaraj Syncfusion Team November 23, 2017 12:59 PM UTC

 
Thanks for contacting Syncfusion Support. 
 
You can achieve this requirement (changing Indicators axis and Secondary axis grid lines color) by applying  MajorGridLineStyle for it as shown in the below code , 
 
Code Snippet[XAM]: 
<chart:SfChart.SecondaryAxis> 
   <chart:NumericalAxis> 
        <chart:NumericalAxis.MajorGridLineStyle> 
             <Style TargetType="Line"> 
                 <Setter Property="Stroke" Value="Orange"/> 
                 <Setter Property="StrokeThickness" Value="1"/> 
             </Style> 
         </chart:NumericalAxis.MajorGridLineStyle> 
   </chart:NumericalAxis> 
</chart:SfChart.SecondaryAxis> 
 
<chart:SfChart.TechnicalIndicators > 
    <chart:AccumulationDistributionIndicator  ItemsSource="{Binding Collection}" High="High" Low="Low" Open="Open" Close="Close"  > 
          <chart:AccumulationDistributionIndicator.YAxis> 
               <chart:NumericalAxis OpposedPosition="True"  > 
                    <chart:NumericalAxis.MajorGridLineStyle> 
                        <Style TargetType="Line"> 
                           <Setter Property="Stroke" Value="Blue"/> 
                           <Setter Property="StrokeThickness" Value="1"/> 
                        </Style> 
                    </chart:NumericalAxis.MajorGridLineStyle> 
                </chart:NumericalAxis> 
          </chart:AccumulationDistributionIndicator.YAxis> 
    </chart:AccumulationDistributionIndicator> 
 
</chart:SfChart.TechnicalIndicators> 
 
 
Please find the output screenshot below, 
 
 
We have prepared a reference sample and it can downloaded from the below link, 
 
Please let us know if you have any concerns. 
 
Regards,  
Durgadevi S 


Loader.
Up arrow icon