Questions tagged [chart-director]

A charting package from Advanced Software Engineering

A charting package from Advanced Software Engineering https://www.advsofteng.com/index.html

15 questions
7
votes
1 answer

Autoload'd calls fail via Inline::Perl5 in Raku

I'm rewriting some perl/charting software in Raku but have run into an issue using the ChartDirector perl5 module (link below) via Inline::Perl5. The module is basically a perl interface to a DLL; using the module via Inline::Perl5 seems to work…
wingfold
  • 169
  • 4
2
votes
1 answer

How to add Label at customized position in XY chart in chartdirector in C++?

I want to add a customized Label at customized position in XY chart in chartdirector in C++. For example, add a number label at (20, 40) on the plotarea. // Create a XYChart object of size 740 x 760 pixels XYChart* c = new XYChart(740, 760); // Set…
lei lei
  • 1,753
  • 4
  • 19
  • 44
1
vote
1 answer

How to install ChartDirector?

I am trying to install the ChartDirector module for python. I downloaded, expanded it and put it in /Users/MyName/anaconda/lib/python2.7/site-packages/ChartDirector along with all the other modules I use. However when I try and call the module I…
PaulBarr
  • 919
  • 6
  • 19
  • 33
0
votes
1 answer

How to format DataLabels and AxisLabels differently for positive and negative values in ChartDirector for ASP?

I'm using ChartDirector for ASP creating a ChartXY with 2 y axes, one for each array of data, one represented by BarChart and the other by LineChart. All values that I use in these cited are numerical values and I need to format the DataLabels and…
0
votes
1 answer

unable to place chart on wxAuiNotebook

Temporary policy: ChatGPT is banned for linebreak add 2 spaces at end indent code by 4 spaces put returns between paragraphs ClientChartsViewer.hpp /*! * ClientChartsViewer class declaration */ #pragma once // For compilers that support…
0
votes
0 answers

How do I add a linker option into my CMakeLists.txt for ChartDirector

I've got an example makefile given from ChartDirector that compiles what I want correctly, but I want to convert it to cmake to use the code in a larger project involving cmake. Relevant Makefile code: CC = g++ CFLAGS =…
Neza
  • 117
  • 1
  • 7
0
votes
1 answer

How to show "No Data" when chart does not have anything to display

I want to display a "no data" label on the View when the chart returns nothing. I'm using ChartDirector, and this is a MVC project. [HttpGet] public ActionResult Sales() { SALESChart1(ViewBag.Viewer = new…
fl13
  • 57
  • 1
  • 1
  • 12
0
votes
1 answer

How to remove black border generated in CharDirector ContourLayer?

I have this piece of code that generates an image. I pass proper expected data to this method and it is generating the image as expected except 1 thing. ContourLayer layer = c.addContourLayer(dataX, dataY, zData); double[] myColorScale =…
sysquare
  • 33
  • 1
  • 5
0
votes
1 answer

Create sector zones in plotly

In ChartDirector you can set different zones of the chart as different colours depending on the data values: c.angularAxis().addZone(4.5, 5.5, 0xffff00) c.angularAxis().addZone(7.5, 8.5, 0xffff00) However I cannot find any equivalent for plotly. I…
PaulBarr
  • 919
  • 6
  • 19
  • 33
0
votes
1 answer

how to sync 2 y-axis in Chart director

I have 2 arrays for bar chart. $pm and $estimate. I am computing $percent = ($estimate / $pm) * 100 to have an array for the percent to create my value for the line chart. Now the question is how can I sync my 2 y-axis in bar chart and my line…
elvis
  • 107
  • 1
  • 1
  • 5
0
votes
1 answer

How to use ChartDirector.XYChart addLineLayer() method with argument as Double;

I want to display my output in graphical format using ChartDirector.XYChart.When I use its addLineLayer()method with arugument as Double Type array, then it shows an error "The method addLineLayer(double[]) in the type XYChart is not applicable for…
SRY_JAVA
  • 323
  • 3
  • 10
  • 21
0
votes
2 answers

How to link with chart director library with mingw

I am trying to build an application under mingw with Chart Director. My code compiles fine, but I get undefined reference errors from the linker. The object file needs to link with ../ChartDirector.cpp/lib/chartdir51.lib I have renamed this file to…
ravenspoint
  • 19,093
  • 6
  • 57
  • 103
0
votes
1 answer

Multi-colored axis in Chart Director

I am replacing an old charting package with chart director. The previous package produced multiply colored axis, so that you can quickly see where different days begin/end, like this: Does chart-director support anything similar?
ravenspoint
  • 19,093
  • 6
  • 57
  • 103
0
votes
1 answer

Missing Bars in Chart Director

I am using Chart Director ( http://www.advsofteng.com/index.html ) to display 1 minute HLOC financial data. The dataset is missing some of the bars, so I add them back with H=L=O=C=arbitrary value. The result is ( red arrow points to period with…
ravenspoint
  • 19,093
  • 6
  • 57
  • 103
-2
votes
2 answers

ChartDirector Display Single Value

I have a question I use BarLayer Add three Dataset I can use display all Data setAggregateLabelStyle setAggregateLabelFormat but I want display single Data Value Like this Any Idea?
huang
  • 89
  • 1
  • 3
  • 7