Double Bar with Double Tooltip

Hello Team, 


Do we have below mention chart feature :




5 Replies 1 reply marked as answer

SM Srihari Muthukaruppan Syncfusion Team November 3, 2020 07:23 AM UTC

Hi Deepak, 

We can achieve your requirement by using “enableSideBySidePlacement” property and “columnWidth” property in the chart. Based on that we have prepared a sample and also attached our demo sample link for your reference. Please find the sample, code snippet and screenshot.  
    
 
 
Code Snippet: 
// add your additional code here 
<ejs-chart style="display:block;" [enableSideBySidePlacement]="placement" > 
      <e-series-collection> 
        <e-series [dataSource]="data" type="Column" xName="x" yName="y" name="Mango" columnWidth="0.7" 
          fill="#60b6dc" > 
        </e-series> 
                <e-series [dataSource]="data" type="Column" xName="x" yName="y" name="Mango" columnWidth="0.4" 
          fill="#60b6dc" > 
        </e-series> 
      </e-series-collection> 
    </ejs-chart> 
// add your additional code here 
  
Screenshot:   
 
 
Let us know if you have any concerns. 
 
Regards,
Srihari M



DJ Deepak Jain November 3, 2020 08:04 AM UTC

Hi Shrihari,


Thaks for your reply, You solved 50% of my requirement. I want the same exact like this. separate tooltip, y and x-axis movable labels with bubble.




SM Srihari Muthukaruppan Syncfusion Team November 4, 2020 08:53 AM UTC

Hi Deepak,  
 
We have analysed your query. From that, we would like to let you know that it is not possible to achieve your requirement of separate tooltip in chart. Hence we suggest you to enable marker to highlight the selected column as shown in the screenshot. And regarding movable labels we can achieve your requirement by using “crosshairTooltip” property in the axis of the chart. Based on that we have prepared a sample for your reference. Please find the sample, code snippet and screenshot.   
     
  
Code Snippet:  
// add your additional code here  
<ejs-chart style="display:block;" [enableSideBySidePlacement]="placement" [primaryXAxis]="primaryXAxis" [primaryYAxis]="primaryYAxis" >  
      <e-series-collection>  
        <e-series [dataSource]="data" type="Column" xName="x" yName="y" name="Mango" columnWidth="0.7"  
          fill="#60b6dc" >  
        </e-series>  
                <e-series [dataSource]="data" type="Column" xName="x" yName="y" name="Mango" columnWidth="0.4"  
          fill="#60b6dc" >  
        </e-series>  
      </e-series-collection>  
    </ejs-chart>  
// add your additional code here  
 
public primaryXAxis: Object = { 
    valueType: "Category", 
    interval: 1, 
    crosshairTooltip: { 
      enable: true 
    }, 
    majorGridLines: { width: 0 } 
  }; 
 
   
Screenshot:    
   
  
Let us know if you have any concerns.  
  
Regards,
Srihari M
 


Marked as answer

DJ Deepak Jain November 6, 2020 05:33 AM UTC

Thanks for your reply, good to know that you have movable labels but still my management wants double tooltip for their requirement and want to switch to other options. 
I will glad if i can achieve this in sf charts.

Thanks 


SM Srihari Muthukaruppan Syncfusion Team November 9, 2020 12:27 PM UTC

Hi Deepak, 
 
Sorry for the inconvenience. 
 
We have analysed your query. From that, we would like to let you know that as of now we do not have support to add seperate tooltip, we have considered this scenario as a feature request and you can keep track of it from the below feedback portal link.    
  
  
This feature will be included in any of our upcoming release and if you have any more specification/precise replication procedure or a scenario to be tested, you can add it as a comment in the portal. 
  
Please let us know, if you need any further assistance on this. 
  
Regards, 
Srihari M 


Loader.
Up arrow icon