• Sunil kumar Mahamkali
  • NEWBIE
  • 0 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 2
    Replies
Hai everyone, 

​​​​​we have many reports which are built on matrix format which has grouping with case status change on x-axis and grouping with case number on y-axis. We have a known issue that when we add this report in dashboard with display as colomn chart 📊 ... We can only see 5 status only as we have 9 status on x-axis. Can some one help us how can I bypass these with any other report format or can we achieve to see all the records data using analytic cloud????? 
please revert if this is possible 
​​​​​​
thanks in advance.... 
​​​​​​
Hai everyone, 

​​​​​we have many reports which are built on matrix format which has grouping with case status change on x-axis and grouping with case number on y-axis. We have a known issue that when we add this report in dashboard with display as colomn chart 📊 ... We can only see 5 status only as we have 9 status on x-axis. Can some one help us how can I bypass these with any other report format or can we achieve to see all the records data using analytic cloud????? 
please revert if this is possible 
​​​​​​
thanks in advance....
I need to send email with name, email, description, attachments in lightning component 
I am able to send all the details from component.Js to apex except attachments.... I am using <lightning:input type="file" auraid="fileid" Value="{! V. Attachments} accept=" *allfiles" Onchange= "{!c.handlechange}" > 
I would like to know how to send this attachment to apex method from contoller along with other email, name, description fields 
???????????? 
i am trying to populate componentB in new tab onclick of a button from componentA using e.force:navigateToComponent  unable to navigate ?????  ANY ideas on this .

js
----
navigateToComponents: function(component, event, helper) {
        var evt = $A.get("e.force:navigateToComponent");
        evt.setParams({
            componentDef : "c:SPC_Support",
            componentAttributes: {
            }
        });
        evt.fire();
    } 

componentA
-------
 <lightning:button variant="base" label="Support" onclick="{!c.navigateToComponents}" />

componentB
-----
<div > header<div>
<div>body<div>

any idea please help me in navigating to new component in a new browser tab?????????
i am trying to populate componentB in new tab onclick of a button from componentA using e.force:navigateToComponent  unable to navigate ?????  ANY ideas on this .

js
----
navigateToComponents: function(component, event, helper) {
        var evt = $A.get("e.force:navigateToComponent");
        evt.setParams({
            componentDef : "c:SPC_Support",
            componentAttributes: {
            }
        });
        evt.fire();
    } 

componentA
-------
 <lightning:button variant="base" label="Support" onclick="{!c.navigateToComponents}" />

componentB
-----
<div > header<div>
<div>body<div>

any idea please help me in navigating to new component in a new browser tab?????????
Hello Everyone,

I'm trying to use force:navigateToComponent, but its not working. Here is my code:
<pre>
({
    NavigatetoComp : function(component, event, helper) {
        
        console.log('Enter Here');
        var evt = $A.get("e.force:navigateToComponent");
        console.log('evt'+evt);
        evt.setParams({
            componentDef: "c:MyComponent2",
            //componentAttributes :{ }
        });
       
        evt.fire();
    }
})
</pre>

It throws following error:
User-added image

Can any body tell why is it so?

Thanks In Advance
Aakanksha Singh