Axis, Legend, and Canvas configuration in SDK? - gooddata

In the analytical designer, you can now change the configuration of the axes, legend, and canvas when creating an insight.
I know that the SDK supports setting the legend visibilty and position (https://sdk.gooddata.com/gooddata-ui/docs/chart_config.html) but is it possible to configure the axis and canvas in the same way as the designer?

all these configurations are available in latest alpha version and in 6.0.0-rc1 of #gooddata/react-components package, but it contains still few minor bugs. We plan to release final version of this functionality approximately in two weeks in 6.0.0 version including documentation and live examples

Related

Hicharts graph zoom on react native

I used Highcharts on my project in mobile react native and found after trying to pinch-to-zoom on graph x-axis and y-axis are not refreshing to shows smaller x-coordinate numbers.
However when I used to work in Expo, it was properly worked and showing correct number during pinch-to-zoom.
Please advise if you ran into same issue and how you fixed it? I am guessing there should be an event needs to be trigger to refresh charts.
Tried to use Highcharts zoon feature on react native code for my graph, expecting to see smaller numbers of X and Y axis on graph after pinch-to -zoom
I have found, that you have already asked your question on Freshdesk, our support channel. In the future, please do not duplicate topics across our support channels, as we work as a single team of developers.
The React-Native package is deprecated, so that means, that we dropped support for that package, and it now is in hands of the community. If you need any support with this package, you can create an Issue in GitHub and might find some help there. Alternatively, you can try to search for some new package, which is not official. On the other hand, you can try to use methods, like chart.redraw (https://api.highcharts.com/class-reference/Highcharts.Chart#redraw) or chart.reflow (https://api.highcharts.com/class-reference/Highcharts.Chart#reflow) - they are responsible for redrawing/reflowing the chart, which will refresh the chart.

Viewing graphs in Jupyter or IPython

I am trying to use both bokeh and matplotlib in my IPython notebook... Neither work perfectly.
Attached is a screen shot of Bokeh. Matplotlib explanation is below.
Here are my system specs:
-Windows 7 with Vagrant
-Jupyter/IPython
BOKEH -- buttons are static images; there is no resizing, yet the graph is interactive
Should look like from this website: http://docs.bokeh.org/en/latest/docs/quickstart.html
MATPLOTLIB -- only static shots appear when it should be zoomable, etc (like bokeh)
1) read the documentation.
you would only change output_file() to a call to output_notebook() instead.
Which you did not seem to do above.
2) Why should it ? What di you do to make it zoomable ?
3) try not to post 2 unrelated question at the same time.
You appear to be using an older version of Bokeh. The issue with the CSS problems (button appearance) has been fixed for some time. As mentioned above, you will need to execute output_notebook() to load Bokeh for IPython notebook usage. For future reference, questions like this greatly benefit from providing as much information as possible (e.g., Bokeh and browser versions, platform information, etc.) Without that information it is impossible to diagnose problems with any certainty.

Do any one know how to draw high chart in Extjs ? Do you i need any plug-in for this

Do i need a plug in for high chart. I have searched through the net can anyone give me a solution. I have found that a plug in is needed for the Extjs 3 but what about version 4 onwards
It will require extension. However, it appears that an extension is already available on github. Additionally, charting in ExtJS4 is supported so if you don't need highcharts specifically then the chart you require may already be supported. Charting examples with native ExtJS are available in sencha docs.

How to interactively create an edge on canvas between two nodes

As in the cytoscape.js to make an interactive communication between nodes? Is it possible? In similarity how it is implemented in a factoid (http://webservice.baderlab.org:3000/).
That is, you can interactively create an edge on canvas between two nodes and then save it in the database.
The bundled edgehandles plugin is what you're looking for, though you'll also need the cxtmenu plugin or some other manual UI for starting the gesture (e.g. a mode + tap) to support touch devices. They have their options documented at the top of the source, and they will be further documented in 2.1 once they are migrated to the jQuery plugin site -- those plugins are simply jQuery plugins that use the cy.js API afterall.

Highcharts IE10 support

I am using highcharts and am having issues with the functionality with internet explorer 10.01.
For polar charts the series do not load until you roll the mouse over the chart. If you have a series that is an area (filled), you need to turn the series off then on again before it displays.(version 2.3.5 does not fix this issue)
Saving the presented image from the icon with the chart does not render correctly. You can it is a radar chart, but cannot make out any of the values, or colours. They tend to be grey. (version 2.3.5 fixes this issue)
Are these issues known?
Is there a solution to these issues/work around? Has it something to do with SVG? Could I force it to use VML?
Is there a planned fix for these?
This is now a recognised as an issue by highcharts and it will be fixed in due course
https://github.com/highslide-software/highcharts.com/issues/1499
Update:
A hack workaround in the meantime, is to hide and show a single series on the chart after you have rendered in, in JavaScript
if(chart.series.length>0)
{
chart.series[0].hide();
chart.series[0].show();
}
Use Version 2.3.5 it has fixed IE10 support.