How Do I Print A Burn Down Chart From Jira? - jira

I want to print my burn down charts from the 'Reports' Tab in Jira. There is no specific 'print' functionality. When I try to just print from within the browser, it will print the whole window, not just the chart.
According to the Atlassian Community forum, there is no solution to this yet. Has anyone come up with something?

Mouse right click on the white spaces underneath the tile " BurndownChart", it gives you the option to print. This is how I have been able to print the BD chart.

Related

Are MT4 Strategy Tester backtest results panel dates somehow linked with MT4 Graph?

when I see the backtest results, there is a Result panel( Ref. e.g.: https://quivofx.com/wp-content/uploads/2015/02/result.png )
that listed all transactions for the backtest.
Is there a way to quickly scroll to the relevant portion of the graph?
For example, say buy on 2017.05.03 10.30 EURUSD 5 Min, I would scroll to that portion by just e.g., double click on the entry?
Currently, it is pretty slow for me to go back and forth to check for result entries by scrolling the Graph manually.
double click on trade entry or modification or exit and you will see that picture (of course if you ran the test with visual mode=true)
press space bar and type data and time then press enter - you will see that the chart moves to the indicated date
Another fast & built-in method available:
The fastest jump to an exact datetime value in the MT4 Graph works via the mouse double-click inside the graph's time scale area, near the lower-left corner, where a small gray triangle is present.
A mouse, positioned there for a while, shows a self-explanatory label Double click for editing
Next, one may type-in or copy/paste there any datetime target as one wishes to move to.
2016-12-12 08:00
and hit ENTER
So,
1) using mouse-select ( over a legitimate datetime value as seen in Strategy Tester results et al )
2) Ctrl-INS to copy into a paste buffer
3) Alt-TAB to get into MetaTrader Terminal 4 Graph, if Results were copied from WebBrowser, not from a Strategy Tester sub-window panel in MT4
4) using a mouse-doubleclick activate the datetime entry field as explained above
5) Shift-INS to paste the paste-buffer content
6) ENTER & voila, you are there.

Highchart: Spline with clickable Symbols

i like to show additional informations on a highchart graph by clicking on a datapoint. I like to visualise this "clickpoint" by setting a flag. That can be done linke the sun that will be shown here: http://www.highcharts.com/demo/spline-symbols/gray
But i did not find any information in the api how to make this marker clickable. Isnt it possible? In the highstocks API i found clickable flags that can be set. But i need to use the highcharts api only.
Maybe some of you have solved this problem and an give me some hints.
Thanks
You can catch it by click function on the point.

TeeChart printing with C++ Builder XE5 not the same as preview

C++ Builder XE5, 32 bit
Drop TChart object on form
Right click and select EDIT CHART
Click the add button, click OK
Click on the word PRINT
Click the 'Print' button.
The printed graph looks nothing like the preview. I've tried a few different types of graphs and none print anything like the preview. The preview looks perfect, the printed graph is ENLARGED, the title on the paper is almost an inch high, the numbers for the left axis are huge (about 3/4" high), the graph itself is only 2 inches wide by about 4.5 inches high.
Here is the printout www.rcscoringpro.com/tracks/Chart.pdf
Thanks for looking!
Doug
This was fixed with the free update here:
http://cc.embarcadero.com/item/29708

Showing a cross-hair programatically in Highcharts

Has anyone been able to successfully render a cross-hair programatically in Highcharts?
I have a visualization playing an animation through time and I would like to co-relate the position on the chart via the crosshair. I find that visual cue better than selecting the point on a series. Thanks!
Although Highcharts has something called a cross-hair, I guess what I'm looking for is a plot line.
I've found documentation here and an example scenario
EDIT: I've also noticed that marker.enabled must be set to false or the plot line doesn't show.

Teechart with Candlestick for Delphi

I am using the TeeChart VCL Delphi module. I am trying to plot a candlestick chart. I have the following questions:
When I run the code it shows me the last date data on the right hand side. However, the y-axis is not automatically scaling at all. If I scroll backwards, it automatically adjust the y-axis scales. However, if I go far to the right which is the end, it does not auto-scale the y-axis anymore. What am I doing wrong?
The x-axis is the days of the week. However, I have no data for the weekend. It shows as empty space. How do I remove that?
How do you change the cursor so it shows the date/time for the X,Y you choose?
When I run the code it shows me the last date data on the right hand
side. However, the y-axis is not automatically scaling at all. If I
scroll backwards, it automatically adjust the y-axis scales. However,
if I go far to the right which is the end, it does not auto-scale the
y-axis anymore. What am I doing wrong?
What about setting the Y axis (left axis) to be automatic? For example:
Chart1.Axes.Left.Automatic:=True;
A more drastic solution would be also forcing the chart to repaint after adding each point.
Series1.Add(value);
Chart1.Draw;
If any of that helps please send us a simple example project we can run "as-is" to reproduce the problem here. You can attach your files here.
The x-axis is the days of the week. However, I have no data for the
weekend. It shows as empty space. How do I remove that?
You should do as in the All Features\Welcome!\Chart Styles\Financial\Candle (OHLC)\Axis Labels no Weekends example in the new features demo. This demo is included with registered and evaluation versions. Otherwise you can download it here.
How do you change the cursor so it shows the date/time for the X,Y you
choose?
There are two examples in the demo that can help you on this:
All Features\Welcome!\Tools\Annotation\Annotation Callout
All Features\Welcome!\Tools\Cursor\Synchronizing Two

Resources