As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I am also curious about has anyone managed to make this happen and more importantly how or why. In other words, how would you make use of this capability if it existed.
I have also requested this a while back and as far as I know the capability does not exist. But there is a work around as I will show below.
The implication of your code is that you only have one series like Sales over Region or Units over Region. I’m going to make believe that your chart shows Sales, Cost and Profit over Region. I'm also going to amend your scenario by adding a WHERE statement for YEAR inside your chart: Therefore, within your chart code you would have:
SUM SALES COST PROFIT BY REGION WHERE YEAR EQ &YEAR; That would change your drill down code to look like.
The COLUMN=N2 is because you are drilling down from the Sales series as opposed to Cost or Profit. The YEAR=&YEAR.QUOTEDSTRING is because my presumption here is your current chart caused you to select a year and you are going to pass that same year to the summary_drill_down procedure which also has a WHERE YEAR EQ &YEAR statement.
Now with all this your chart would have three legend labels: Sales, Cost and Profit. Then it would be even more enticing to want to click on a legend label to see a drill down on a specific series. Although there is no drill down directly from the legend labels (as far as I know), you can still accomplish the same thing.
So here comes the work around… You can still accomplish the same thing via multi-drill as follows:
When you run and drill down on any point on the sales series (in this example) you will now see a menu. The first choice will take you exactly to where you are now. The other three will run procedures that are for the entire series (Sales or Cost or Profit) independent of which x-axis label (i.e. which Region) you were over.This message has been edited. Last edited by: Sandy Stulberger,
Posts: 8 | Location: Los Angeles | Registered: May 05, 2003
Thanks Sandy... I'm not sure if your solution will work for our issues. We are still in the planning process for a chart that our users want. We anticipate that there will be intervals where the lines are overlayed and/or very close together making it harder for the user to drill down for a specific line. By allowing them to drill down from the legend they can more easily pick which item they are drilling down on.
Since we are still working on the design I wanted to find out if drilling down from a legend was even possible.
HCP... I fully understand that if you have a line chart with let's say two series such as Sale and Cost. Then there may be situations when the lines overlap (i.e. the sum of Sales is exactly the same as the sum of Cost).
However, you still have other options that would make it possible to distinguish between Sales vs Cost. If you could consider using a bar chart instead, then the series will be clustered along side of each other. In such a chart there will be no problem clicking on either the Sales bar or the Cost bar.
You might even want to consider a Bar, Line, Area combination. These will also make it easier to distinguish between the series and make it easier to pick which series and which data point in the series to drill down.
Remember, if you were to drill down on a series legend, then that drill down would need to be for the entire series.
When you drill on a chart value you are also specifying where that series is over the X-Axis. In other words, your drill down can also pass the X-Axis value; weather that is Region or Month or Year-Month.This message has been edited. Last edited by: Sandy Stulberger,
Posts: 8 | Location: Los Angeles | Registered: May 05, 2003