 |
|
 |
I wants to know that xgraph is supporting VS 2005 ?
|
|
|
|
 |
|
|
 |
|
|
 |
|
 |
Hello please tell me how can i use this chart in VB 6.0
|
|
|
|
 |
|
 |
I have downloaded binaries and source code but the printing doesn't work with the original binaries and the recomplied ones. I always get a blank page. Any idea?
|
|
|
|
 |
|
 |
There is a bug in function CXGraph::GetMinMaxForData, sometimes it can't get the correct data range.
My solution is to add 4 lines at the beginning of the function.
void CXGraph::GetMinMaxForData (CXGraphDataSerie& serie, double& fXMin, double& fXMax, double& fYMin, double& fYMax)
{
//add by hamo2008
//reset the mins and maxs to the first data
fXMax = serie.m_pData[0].fXVal;
fXMin = serie.m_pData[0].fXVal;
fYMax = serie.m_pData[0].fYVal;
fYMin = serie.m_pData[0].fYVal;
// check mins and maxs
for (long i = 0; i < serie.m_nCount; i++)
|
|
|
|
 |
|
|
 |
|
 |
Yes, I am interested in new updated sources. I would like to built a graph contol to visualize differences between approximation of the neuron's activation function in a neural network.
Any help appreciated.
geoyar
|
|
|
|
 |
|
 |
I would need the fixed release. Can you send me the fixed release? Here my email (temporary): fox_rbxbrr@trashmail.net
Thank you for your work! And thanks to the author
|
|
|
|
 |
|
 |
To you and everyone else: I've uploaded my latest available version of XGraph here:
http://xwider.wtr.ru/modules.php?op=modload&name=Downloads&file=index&req=viewdownload&cid=6
I don't remember any problems I had with XGraph because it was half a year since I worked on it. I hope someone will continue this project once again.
in another thousand years we'll be machines or gods█
|
|
|
|
 |
|
|
 |
|
 |
But it cannot be used in VC2005 either. How can I transfer it into a version using in VC2005?
Thanks.
|
|
|
|
 |
|
|
 |
|
 |
HI,
I am trying to use this Charting in my project, which i am failin to do.
1. I had included the XGrapgh10.h and Dll and libary files.
2. Now i am trying to Use that XGraph object. it crashes
deeps1985
|
|
|
|
 |
|
 |
I have downlowded the Demo, but I'm unable to compile the Demo Files.
Everytime I get the Message:
XGraphTest error LNK2019: Nicht aufgelöstes externes Symbol '"public: class CXGraphLabel & __thiscall CXGraph::InsertLabel(class ATL::CStringT > >)" (?InsertLabel@CXGraph@@QAEAAVCXGraphLabel@@V?$CStringT@DV?$StrTraitMFC_DLL@DV?$ChTraitsCRT@D@ATL@@@@@ATL@@@Z)', verwiesen in Funktion '"protected: void __thiscall CPropertyView::OnInsertLabel(void)" (?OnInsertLabel@CPropertyView@@IAEXXZ)'
XGraphTest error LNK2019: Nicht aufgelöstes externes Symbol '"public: void __thiscall CXGraphAxis::SetColorRange(int,double,double,unsigned long,unsigned long,class ATL::CStringT > >,unsigned int)" (?SetColorRange@CXGraphAxis@@QAEXHNNKKV?$CStringT@DV?$StrTraitMFC_DLL@DV?$ChTraitsCRT@D@ATL@@@@@ATL@@I@Z)', verwiesen in Funktion '"public: void __thiscall CXGraphTestView::AddDataSerie(bool)" (?AddDataSerie@CXGraphTestView@@QAEX_N@Z)'
What I'm doing wrong or what is the Problem?
I'm using: Microsoft Visual C++ .NET Version 7.1.6030
Please Help me.
many Thanks
O. Erb
|
|
|
|
 |
|
 |
Hello,
Does somebody have a new version of this project ?
I search a version where maximum bugs are fixed and with new features ...
Thank for you help
Stéphane
|
|
|
|
 |
|
 |
I’m trying to use this project but experiencing a lot of bugs especially with zooming and COleDateTime dates representation on X-axis. For example, using m_Graph[0].GetXAxis(0).SetDisplayFmt("%d-%m-%y") and choosing zooming box by a mouse, will cause graph shrinking as long as someone will move a mouse, but graph wouldn’t shrink if SetDisplayFmt("%d-%m-%y") line is commented.
It’s very disappointing that supplied compilable demo project by the author Gunnar Bolle is missing a lot of curve property dialogs and definitely is not the same as EXE demo. Therefore double click on any curve will crash the project :-<.
Can someone who corrected above (or other) bugs do me a BIG... favor and send me (compressed) compilable working demo project, I would appreciate this very much and will return back my gesture.
Please send me directly to:
albert33ja@yahoo.com
|
|
|
|
 |
|
 |
I get compile-errors in xgraph.h when recompiling after including to my application (see the first five or so below). I believe this is caused by an incorrect compiler-option or something but I have not been able to sort it out. Can anyone give me a hint? Thanks in advance!
maladuk
PS! I use: Visual C++ 6.0
--------------------Configuration: PINEHBV - Win32 Release--------------------
Compiling...
RunHBVPredictionsDlg.cpp
Automatically linking with XGraph10.dll
\graphing/XGraph_src/xgraph.h(162) : error C2059: syntax error : 'string'
\graphing/XGraph_src/xgraph.h(162) : error C2143: syntax error : missing ';' before '}'
\graphing/XGraph_src/xgraph.h(162) : error C2238: unexpected token(s) preceding ';'
\graphing/XGraph_src/xgraph.h(166) : error C2143: syntax error : missing ';' before 'public'
|
|
|
|
 |
|
 |
1. in debug mode COleDateTime ASSERT failed
you must modify code in AxisDlg.cpp,my solution
COleDateTime time1;
if ( time1.GetStatus() = COleDateTime::valid )
{
m_StartDate = m_StartTime = m_EndDate = m_EndTime = time1;
}else
{
m_StartDate = COleDateTime::GetCurrentTime();
m_StartTime = COleDateTime::GetCurrentTime();
m_EndDate = COleDateTime::GetCurrentTime();
m_EndTime = COleDateTime::GetCurrentTime();
}
2.in Resouces Edit: CURVE Dialog(IDD_CURVE) this control:IDC_CBFILLCURVE no exist,you must add it youself
3.in XGRAPH.CPP all include line: AFX_MANAGE_STATE(AfxGetModuleState) must modify:
AFX_MANAGE_STATE(AfxGetAppModuleState)
|
|
|
|
 |
|
|
 |
|
 |
hello , Im using this wondefull control but facing one problem with this.
I cant able to print whole graph. when i print it both axis arent print , rest of the graph is printing. Can any body help me ?
|
|
|
|
 |
|
 |
HI ,
I am using this wonderfull graph. but when i try to use "Savebitmap" function. It generate .bmp file but when i open this .bmp file getting message
"drawing failed". Why so ?
Please help me if anyone know this reason.
|
|
|
|
 |
|
 |
Well thanks all pof u but i resolve both of my problems.
|
|
|
|
 |
|
 |
Sir,
I am getting this below error while i compile Xgraph Src in debug mode.
Compiling...
StdAfx.cpp
c:\documents and settings\maxx\desktop\xgraph_src\stdafx.cpp(5) : fatal error C1083: Cannot open precompiled header file: 'Debug/XGRAPH.pch': No such file or directory
Error executing cl.exe.
XGRAPH10d.dll - 1 error(s), 0 warning(s)
PLease Help me what to do for this error.
Thnx in advance.
|
|
|
|
 |
|
 |
Look at message: missing xgraph10d.dll. (In debug configuration you must modify cpp file settings to "Automatic use of precompiled headers" like in Release configuration.)
|
|
|
|
 |