Super Sample Superstore Tutorial - tableau-api

Hi I am new to tableau and I am trying to create a similar version of visualization as the super sample superstore on the website. https://www.tableau.com/solutions/gallery/super-sample-superstore
I am wondering is there any training materials or tutorials regarding to this sample. if not, a specific question on this is how the three navigating buttons on the top right were created and how the perimeters where created to link to different DASHBOARDS.
descriptive/prescriptive/annotations

You can learn tableau from https://www.tableau.com/learn/training
Hear you can find all information with videos.

Related

Tableau online how to integrate numerous views into one

I am using Tableau public desktop - the free version. I am trying to place multiple worksheets, and dashboards on one page and link it to my blog site.
Is there a way to customize views in this application? Something like this:
https://public.tableau.com/views/CountyGuide-Demographics_0/DemographicsAll?%3Aembed=y&%3Ahost_url=%2F%2Fpublic.tableausoftware.com%2F&%3AshowVizHome=no&%3Ascrolling=no&%3Atabs=no&%3Atoolbar=yes&%3Aanimate_transition=yes&%3Adisplay_static_image=yes&%3Adisplay_spinner=yes&%3Adisplay_overlay=yes&%3Adisplay_count=no&%3AloadOrderID=0#3
Or does it require a subscription to accomplish this feat? Is there a workaround for if not?
Thanks for any input.
All the cool stuff WRT layout/navigation in the sample link you posted are possible in Tableau Public.
You don't need subscription for creating dashboards and adding actions for navigation etc.
You can see Tableau Tutorials for details.

Create a location-based rotating globe similar to Google Earth using C# and Unity?

I am currently in the process of developing an iOS app involving a touch-enabled rotating globe. I have already found past links for this such as: http://answers.unity3d.com/questions/255118/rotating-an-object-with-touch.html
The question is:
Is possible to make this object location-oriented? I plan to create a cel-shaded globe with different points on the object related to specific locations.
Edit: These locations are not GPS oriented, but just meaning points on an object (globe) represented by objects (tree).
Here is an example I created for a class using Dreamweaver many years ago that would look similar, but touch-oriented instead of using 'West' and 'East' buttons located in the top left of the video: https://youtu.be/UZACQtnQfkA
Sorry the example is in video form, I don't have the code available for comparison at the moment.
This question is being naive and you seem to lack knowledge in Unity3D. I suggest you to go through their official tutorials and get and idea. Then ask if you have any specific questions on issues you're encountering.
You can follow some tutorials to create such scene by PlannetaryTerrain. You can see some efforts on YouTube as well.
Apart from that creating terrains would be a plus. Follow the tutorial by Kostiantyn. Also Follow the Faux gravity tutorial by Sebastian

Dynamic Chart using Xamarin Forms

I am newbie in Xamarin; I know there must be ready components for what I need, already I searched but not yet found.
I need to create a dynamic graphic like this:
http://www.highcharts.com/demo/dynamic-update
I wore this in PhoneGap (html5 + JS), but now I'm moving to Xamarin forms and would like to know if any third component is what I need or I'll have to do everything from scratch.
Thank you.
I'm currently looking into graphing too and OxyPlots seems to be a pretty good line graph tool. I don't think it supports dynamic updating so you'd have to program it to update manually when new data points come available.
I've not gotten round to actually using this myself but I thought I'd post this here in case it works for you.
Edit: Here's a list of examples. Also you can add it to your project using nuget so it should be easy to set up.
I'm using Syncfusion controls for Xamarin.Forms and I'm satisfied with it. They also have a free license for individual developers and small businesses.
For dynamically updated Xamarin charts SciChart offers an extremely high performance solution. With the SciChart Xamarin Chart control you can draw up to a million points, zoom, pan and scroll big datasets interactively.
Check out performance demos here:
https://www.scichart.com/example/xamarin-chart-realtime-fifo-scrolling-chart-example/
https://www.scichart.com/example/xamarin-chart-performance-demo-example/
https://www.scichart.com/example/xamarin-chart-ecg-monitor-demo-example/
Disclosure: I am the tech lead on the SciChart Xamarin project

Candlestick chart on bitcoinwisdom

Im in need for good candlestick chart for my web app and chart at http://bitcoinwisdom.com/ is really what Im looking for. I like the way you can zoom and move with it. Is it possible to figure out what they are using or do you think they made it up on their own? If so with what tools? Another amazing charting can be found here https://www.tradingview.com/e/ these two sites have even better charting than some desktop apps and I wanna know how they did it.
In searching the bitcoinwisdom's forums I found a couple posts asking for the exact same thing. In fact, I stumbled upon your SO post here looking for the same thing.
According to those forum posts' responses they used d3js.org with the rest being custom code. Unfortunately for us as their implementation is very impressive! View source on the page and look for the JS files they are referencing. The code is obfuscated and minified so porting it will be very difficult.

How to create a simple graph just showing two lines in iphone

I want to create a simple graph which will get the values and shows the graph like below image shown
I have also create other graphs using pie chart class but how to make this simple graph to show two line with like this
You can create a bar (or column) chart for iPhone using SciChart.
There is an example showing Objective-C and Swift code] to generate a column chart here: https://www.scichart.com/example/ios-column-chart-demo/
There's a quick tutorial on how to add series to an iOS/iPhone/iPad chart here, as well as source code for the tutorial on github.
Disclosure: I am the tech lead of the SciChart project
A commonly used Cocoa "native" charting library is Core Plot.. Whilst I've yet to personally use it, it seems to be quite popular and is under active development.
or
You can check out the PowerPlot library. It is a powerful choice for native charts on iOS, here are a two sample bar graphs:
The Images Like
Using PowerPlot, the code needed to generate these two graphs is available here (upper chart) and here (lower chart).
Possible duplicate of Bar Graphs in iOS app this thread.
On the provided link there are a lot of frameworks which you can use. For drawing simple graphs there are simpler frameworks than CorePlot.
You can check this Quartz-2d Tutorial.