Is there a way to show number and percent in stacked bar graphs in Quickbase? - quickbase

I'd essentially want to create what's in the link in QuickBase, but from what I've seen, it isn't a straightforward procedure.
https://www.exceldashboardtemplates.com/wp-content/uploads/2013/08/image_thumb11.png

Don't think you can use display both value using the native/built-in charts. You could build a Code Page in Quickbase that queries data using the API and then renders a chart using a library such a Highcharts or Charts.js

Related

Filter across pages in Google datastudio

I have a multi page report with Page 1 having a Table chart with filter interactions ON. When I click on a row in this Table chart, I need my other pages also to get filtered based on this row selection.
If I make this table chart report-level, then this table chart will be visible in other pages which I do not want. What is the best possible way to solve this problem?
An alternative approach is to use a Filter Control (set to Report-level) instead of a Table; additionally, a default selection could be set.
Google Data Studio Report and a GIF to elaborate:

Within the context of D3.js, what is a reusable chart?

I tried searching for this online, but I was not able to find any proper explanation online. Help?
As explained in this article (http://bost.ocks.org/mike/chart/), a reusable chart can be used for inserting a chart into any DOM element, any number of times within the same page. And it also lets you use different data each time the chart is rendered.

Show values on chart Using System.Web.Helpers.Chart

I am using System.Web.Helpers.Chart for charting in MVC3, charts are rendering fine, but i want to add the value of at the top of the bar I tried a lot but failed to find a way to show value of respective bar,Is it possible using System.Web.Helpers.Chart?
Thanks in Advance.

Store App Dashboard: GridView and Multiple Charts

I'm working on a Store app that consists of several charts. I've already developed the charts and have them rendering using the chart control in the various forms.
I have been asked to bring these together in an app that allows the user to scroll left and right through each of the charts.
Every example I have found for using a GridView data binds the content of the GridView to item templates.
What I'm trying to get my head round is how I could please these chart controls directly in to a GridView.
Any help would be greatly appreciated.
Cheers,
Roy
As per my understanding of the question you need to have charts as items in a grid view.
If this is what you want, I have dome this before using charts from 3rd party toolkit.
You need ( may be variable sized) templates with each item having a different template of its own.
You need a items list with data for all the charts.
Then upon runtime you need to assign the template to each item.

Can an Apex Class or a Visualforce Page be the data source for a standard Salesforce dashboard component?

In Salesforce, I create a dashboard and drag a pie chart component on to it. I can then drop almost any report onto the pie chart to serve as its data source. Is it possible to use a class or page to drive the Pie Chart instead of a report?
My attempts so far suggest not. I have an apex:page that is returning a very simple table of data. I can add my entire apex:page with its apex:pageblocktable to my dashboard as an embedded VisualForce Page and the table shows up fine. But it won't let me use the page as the data source for my Pie Chart. My controller class isn't even listed to try using it. Is there some way I can evolve my controller or page to make it a suitable data source for a Pie Chart or any other standard Salesforce dashboard component?
I'm starting to think the only option available to me is to make a page that renders the pie chart for itself (probably using flot) and embed that in the dashboard. I'm willing to go this route, but it sure would save me some time if I could use the standard dashboard components. Any help is appreciated.
If you're wondering why I don't just use a report, it's because I haven't found any that combine leads and contacts in one. I've followed this multi-object apex dummy class pattern to create a custom UnifiedLeadContact class with a handful of common properties from my leads and contacts. My controller runs two queries, one for leads and one for contacts, uses the results to populate a list of new UnifiedLeadContacts and returns it. That is working well to feed my table that functions similar to a lead or contact view but has both leads and contacts in it.
As far as I am aware there is no way to use the output of a VF page as the source of a chart.
But you can create a chart as part of your VF page.
If you have a look at http://www.salesforce.com/us/developer/docs/pages/Content/pages_charting_overview.htm
This will give you the basics on how to feed in the data to a chart ov

Resources