Is it possible to have an interactive gantt chart in oracle that allows you to drag and drop(or slide) bars ( tasks ) to reschedule them?
Since to render Gantt, Apex uses AnyChart, I think its possible since any chart hosts a demo here: http://playground.anychart.com/gallery/7.12.0/Gantt_Live_Editing/Editing_Events
I'll update after I try it out.
Related
How can I handle insert update in Oracle Apex interactive grid with more than one table which is attached with inner join. If anyone have solution please reply.
The source of the IG can be a query or a view on top of multiple tables. Basically this is the rule: if you can execute the update statement in sql on the source then the IG will be able to do it as well.
So it's easy to display some extra columns from another table - updating them will be a challenge. There are 2 workarounds
Create a view with an instead of trigger
Use custom pl/sql code to process the IG data on submit instead of the native process
I have created a vacation planning in Oracle APEX via a GANTT chart.
I need additional columns behind the label (similar to a grid) for information at the corresponding employee/resource (free vacation days for example).
Does anyone know if this is possible? Or how can I implement this. Unfortunately I could not find a way to do this.
I am new to Power BI, and I need to set a fixed graphical chart to the enterprise.
The chart will be used for all dashboards generated from PowerBI (this chart contains the enterprise Logo, color chart,...).
Actually for the moment I am repeating the settings for every dashboard I create, but I need it to be automatically set as template for example.
Is that possible with Power BI please?
Thank you for your answers :)
There's the ability to add a custom theme from a JSON file. I believe this is still a preview feature you need to enable in the options.
This only does colour palette though. I don't think there's an ability to save the format of a visual as a template. You could suggest it over on the Power BI Ideas forum.
Is is possible to attach event handler to a bar in a barchart?
I have a barchart that displays average income (each bar represents a province)...
What I need is: when I click a bar that represents "Illinois" for example, my dashboard will be update with data pertaining only to "Illinois".
That's something that Microsoft Power BI can do. Wondering if that's possible in Superset.
It is definitely not supported for now. Unfortunately you can not customize any behaviour on bar events except checkboxes in controls area. But if you are familiar with javascript you can customize this behaviour in js scripts /superset/assets/visualizations/ after cloning repo and installation from source code.
When you click on the legend of a chart you can disable the display of that dataset. Is there a way of starting the chart display with a dataset turned off?
This is version 2 + of chart.js
Found buried in the commit logs that you can add hidden:true, to a data set to disable it by default.